search for: fore

Displaying 20 results from an estimated 144 matches for "fore".

Did you mean: for
1995 May 24
4
Drivers for FORE systems cards under FreeBSD
...well post it on the FreeBSD announce groups. Included below is a posting done on the Linux-atm mailing group, by Pragnesh Sampat. I have just adapted for FreeBSD. RV -------------------------- Announcement ---------------------------------- Note: This posting is somewhat commercial in nature. FORE Systems is interested in enabling an ATM driver for FreeBSD. For the unfamiliar, FORE Systems supports the widest range of platforms/busses (EISA, PCI relevant to the PCs for example) for ATM adapters for various standard physical media (OC3, Taxi, UTP). Please see below for more information abou...
2009 Nov 19
2
Problem with zoo and BootPR packages
Hi, I'm trying to plot the forecasts I generated using the Plot.Fore function of the BootPR package. But I got an error from zoo: My data: Time Series: Start = 1 End = 18 Frequency = 1 [1] 38731 38628 39117 92809 71984 31226 58613 72360 107956 92066 [11] 95208 99098 95848 120383 110717 105680 98469 101916 Scri...
2009 Nov 10
3
NetCDF output in R
Dear CSAG R users, I will be glad if someone can point out what I am doing wrong or not doing at all in this. I am trying to write out netcdf file in R. I have 26 time step but only the first time step is written. For example: >library(ncdf) >path <- '/home/work/' >forecast <- open.ncdf(paste(path,'cam.1980.2005.nc',sep="")) > fore <- get.var.ncdf(forecast,'ppt') > lon <- get.var.ncdf(forecast,'lon') > lat <- get.var.ncdf(forecast,'lat') >dim(fore)[3] >26 > times <- 1:dim(fore)[3] > writ...
2009 Nov 10
3
NetCDF output in R
Dear CSAG R users, I will be glad if someone can point out what I am doing wrong or not doing at all in this. I am trying to write out netcdf file in R. I have 26 time step but only the first time step is written. For example: >library(ncdf) >path <- '/home/work/' >forecast <- open.ncdf(paste(path,'cam.1980.2005.nc',sep="")) > fore <- get.var.ncdf(forecast,'ppt') > lon <- get.var.ncdf(forecast,'lon') > lat <- get.var.ncdf(forecast,'lat') >dim(fore)[3] >26 > times <- 1:dim(fore)[3] > writ...
2002 May 04
3
Send Password with RSYNC_PASSWORD ore --password-file
Hallo, i am verry sorry about my bad engllish. But i trie my best... I trie to setup an Backupserver. If i use this rsync -varpog -e ssh /home/www/web6 217.172.xxx.xxx:/home/www/web6 the Server is asking me fore Password. If i use this rsync -varpog -e ssh --stats /home/www/web6 217.172.xxx.xxx:/home/www/web6 --password-file=host1.pwd the Server is asking me too fore Passwort. How i can bring the Passwort to the Server automaticly? What i have tu use? What can i do? Ore is it better to use RSYNC_PASSWOR...
2010 Mar 17
1
Reg GARCH+ARIMA
Hi, Although my doubt is pretty,as i m not from stats background i am not sure how to proceed on this. Currently i am doing a forecasting.I used ARIMA to forecast and time series was volatile i used garchFit for residuals. How to use the output of Garch to correct the forecasted values from ARIMA. Here is my code: ###delta is the data fit<-arima(delta,order=c(2,,0,1)) fit.res <- resid(fit) ##Check for Residuals acf((...
2010 May 07
1
help in neural networks package
hi all , has anyone tried to predict a univariate time series by a neural networks packages ? please help me in this problem . I am new in R and I did not found any document that explains this problem. thanks in advance David [[alternative HTML version deleted]]
2012 Oct 22
5
Represent point size according to frequency
Hello! I would like to make a scatterplot of my data, but the problem is that several points have the same x and y values and are represented as only one point. I wonder if there is a way to represent the data points, but with point size representing the frequency of the depicted x-y value? Thank you! -- View this message in context:
2004 Sep 08
0
T100P calls with playback starts speaking be fore pickup
> -----Original Message----- > From: Jerry Geis [mailto:geisj@pagestation.com] > Sent: September 8, 2004 2:19 PM > To: asterisk-users@lists.digium.com > Subject: [Asterisk-Users] T100P calls with playback starts speaking > before pickup > > > Hi > > I am using a T100P connected to a panasonic phone switch using T1 and the > switch has 4 analog lines connected to the CO or real world. When I call > internal extensions my playback message does not start speaking until I pick up. > When I call 9 a...
2006 May 14
4
searching on foreing keys
Hey all, I''m using a simple search function. It''s working great except for foreign keys. I have one table pets (id,name,owner_id) and another table people(id,name) owner_id being a foreign key of pet pointing to people name. here it is on the pet controller: @paginator, @pets= paginate(:pets, :conditions =>["name OR owner_id like ?","%"+params[:filter]+...
2006 Nov 17
6
Success story
hello, just for a success story : After bad experience on fedeora core 6, I have tested a OpenSuse 10.2beta2. I have installed with success a Windows XP SP2. The hardware: A intel DQ965gf Intel Core 2 Duo 6700 USB DVD reader IDE disk (PATA) Set AHCI mode in BIOS and add all-generic-ide in boot option. The opensuse 10.2beta2 does not well configured the xen kernel, you should do a mkinitrd and
2009 Mar 08
0
ARIMA second order differencing problem
...illustrate my point. When I use the xreg=... method, the estimate of intercept is *way* off. This can be seen by the high s.e but I *have* checked it in SPSS. This in turn gives the wrong t and p values (using the data that I'm actually working with; these are NaNs). Despite this problem, the forecast is correct and follows the trend. dat<-c(4,5,9,7,10,15,12,13,17,25,20,29,26,31,32) ts.dat=ts(dat, start=c(1978, 2), frequency=4) ts.plot(ts.dat) arima.dat<-arima(ts.dat,order=c(1,2,0),xreg=1:length(dat)) arima.dat tvalue<-(arima.dat$coef)/(diag(sqrt(arima.dat$var.coef))) tvalue deg.fr...
2010 Dec 08
1
Question on ARIMA Prediction
...preciate if you could shed light on my problem. Here is what I have been trying to do: 1. I fit the model ARIMA(1,0,0) with the training dataset xdata[1:100] fitit = arima(xdata, order=c(1,0,0) 2. I have some current observations in the buffer. Say that buf = xdata_new[1:20] 3. I'm trying to forecast the xdata_new[21] based on the history fore=predict(fitit,buf,n.ahead=1) However, the results of fore$pred give me 20 predicted values from 101 to 120. I'm really confused why this happens. Could you give me some suggestions? It'd be great if there is a similar example. Thank you very...
2005 Apr 18
1
mod_authz_svn anyone?
Hey, Anyone know where I can find the Apache module mod_authz_svn? I'm trying to setup a subversion repository and would like to use that module for the authentication. yum doesn't find anything. Thanks. -- Howard Fore, howard.fore at gmail.com
2006 Oct 24
11
Xen 3.0.3 confusion
I am thoughly confused with the various Xen 3.0.3 versions for Suse. Firt there is not for suse 10.1, so I gues I woulllt the source tarball and compile. ( I tried the RPM for 10.0 (I am running SuSE 10.1) but it caused a kernel panic) I have 5 packages listed unter Yast software management (not including documentation,pdf, etc). Kernel-xen ver 2.6.16.21.25 Xen 3.02_09763-0.8 xen-libs
2012 Mar 08
6
how to modify the tickment of x-axis
hi I plot a series of observation data every minutes in a day as the attachment below plot(wnd,type='l',lty=1,col='red',lwd=1,xlab=xxlab,ylab=yylab,ylim=YY) In the figure, the x-axis tickment is the number of data How can I change it fore example 1h 2h 3h 4h and so on ? -- TANG Jie Email: totangjie at gmail.com Tel: 0086-2154896104 Shanghai Typhoon Institute,China
2005 Sep 08
3
change in read.spss, package foreing?
Dear All, it seems to me that the function read.spss of package foreign changed its behaviour regarding factors. I noted that in version 0.8-8 variables with value labels in SPSS were transformed in factors with the labels in alphabetic order. In version 0.8-10 they seem to be ordered preserving the order corresponding to their numerical codes in SPSS. However I cou...
2005 Sep 08
3
change in read.spss, package foreing?
Dear All, it seems to me that the function read.spss of package foreign changed its behaviour regarding factors. I noted that in version 0.8-8 variables with value labels in SPSS were transformed in factors with the labels in alphabetic order. In version 0.8-10 they seem to be ordered preserving the order corresponding to their numerical codes in SPSS. However I cou...
2010 May 20
1
How could I restrict and reordered data.frames?
Dear Everyone, I 've just begun to use the library ncdf and I would like to compare meteorological observational data with forecast data, so to make verification. The netcdf files I'm using contain data of many different parameters in many different stations. I could read easily that I needed, but naturally I do not need the data of all the stations. On the other hand, the order of the stations is not the same in the o...
2008 Jun 23
3
Getting only label column of a data frame
Hi, How can I extract the label only from a given data frame. Fore example from this data frame. > print(dataf) V1 V2 V3 V4 V5 V6 V7 V8 V9 11145 14.3 17.1 31.2 41.7 45.8 49.8 68.6 70.6 72.9 3545 10.2 15.6 20.9 23.2 31.4 31.7 36.2 48.4 51.9 8951 15.2...