similar to: function to undo the DIFF command in ARIMA command

Displaying 20 results from an estimated 1000 matches similar to: "function to undo the DIFF command in ARIMA command"

2011 Oct 21
2
Arima Models - Error and jump error
Hi people, I´m trying to development a simple routine to run many Arima models result from some parâmeters combination. My data test have one year and daily level. A part of routine is: for ( d in 0:1 ) { for ( p in 0:3 ) { for ( q in 0:3 ) { for ( sd in 0:1 ) { for ( sp in 0:3 ) { for ( sq in 0:3 ) {
2011 Jun 21
1
Doubit about ts() functions
Hi everyone Please, I need one more help you I have some data that need to make a forecast. I´m using the command: Yst<-print(ts<-ts(Y,start=c(1,5),freq=7),calendar=T) to create the dayly time series by the dataframe Y. My data Y means: Y=measure dayly , start at 01/jul/2010 (thursday), for this reason that I use c(1,5). I need to create the time series aggregate by weakly (and not dayly as
2007 Jul 02
0
ARIMA prediction
Hi This is my first post to this group, so apologies in advance if I get it wrong. I would like to know how the prediction for arima models works in R. I have a time series to which I fit an arima model, of varying AR and MA orders. I then use the predict function to project it forward. I have also written my own function to perform the prediction, but it gives different answers to Arima.predict
2007 Apr 18
2
virtual device bus "xen bus"
Hi, in order for installers and hardware discovery programs to be able to load the right device drivers, we really want a virtual device bus in Xen, a'la power5 VIO. This "xen bus" is on the top of Jeremy's TODO list, but since I have heard rumors that some of our friends here might have (some of the) code already it would seem prudent to check whether that code could be
2007 Apr 18
2
virtual device bus "xen bus"
Hi, in order for installers and hardware discovery programs to be able to load the right device drivers, we really want a virtual device bus in Xen, a'la power5 VIO. This "xen bus" is on the top of Jeremy's TODO list, but since I have heard rumors that some of our friends here might have (some of the) code already it would seem prudent to check whether that code could be
2004 Jun 24
2
Roaming profiles. How to do it ?
Hi all.. I'm using Samba 3.0.2a on Mandrake 10, serving +/- 50 win98 clients. I'm using this options: logon path = \\%N\%U\profile logon home = \\%N\%U\profile but the roaming profile seems do not working... at least the way that I want. (maybe this is the right behavior). What I want: -> When an user logins on MACHINE1 the profile that is saved in Linux begin download to
2004 May 05
3
Blocking options !! I can't open the same file in two diferents clients (win98) in same time
Hi all ! I changed my win2k server last night for Mandrake 9.2 and made my shares in Samba, and everything goes fine... but today when we try to run our software, that access the database (data.mdb) in Linux server, the error: the file is locked... Only one user can open the file... Plz, someone can help me?? I'm in trouble! thanx Fl?vio Henrique
2007 Dec 14
1
[Bridge] Packet per Second
Hi all, It's my first time using usenet... Well, I work on an ISP and we have a linux box acting as a bridge+firewall. With this bridge+firewall we control the packet rate per second from each client and from our repeaters. But I can`t measure the packet rate per IP. Is there any tool for this? Actually, what I want is to measure the packet rate per IP and generate graphics with mrtg or
2009 Aug 04
2
error in Elastic net
Dear R users,   I am new user for elastic net. I am trying to use elasticnet library. I have marker data with 359 markers and 168 samples, and response is metabolites. I am trying to do regression between a metabolite and markers.  But i am getting the following error:   > en<-enet(marker,as.numeric(vio),lambda=0.5,normalize=FALSE,intercept=TRUE) Error in one %*% x : requires numeric
2004 Nov 17
2
version 1.0.1 X 1.1.4
I need to compile with version 1.1.4 because this is the one distributed with Mandrake 10 and it is my desire to let my application compile in this distribution and be compatible with other ones. Fl?vio Jean-Marc Valin wrote: >Why do you want your app to with with 1.1.4 in the first place. It's a >old unstable version and its API has been changed since then. > > Jean-Marc >
2008 Feb 27
3
Values are multiplied by 100x
Hi, I type a value, for example, "10,00". I see in the screen "10,00" but when print that value is multiplied by 100x resulting: "1000,00". What can I do? wine 0.9.55-1 Debian/Sid Thanks. -- S?vio M Ramos Arquiteto, Rio, RJ S? uso Linux desde 2000 www.debian.org
2014 Nov 09
1
Problems with the "NetBIOS Name" - Nothing appears Machine Network!
Dear, Good night and good Sunday everyone! First I would like to apologize because I am Brazilian and my English is terrible! I've been through this e-mail, humbly appeal to solidarity you have to solve a little problem that comes taking me sleep a few days ago. What happens is that implemented a Samba4 to the role of the AD Microsoft. I made this implementation using a Debian 7.7.7
2009 May 06
7
Quota over NFS
Hey, I've been strugling to get quota working on my enviroment. I have one storage server that exports the 'home' dir. My mail server mounts the exported 'home' server at '/home' # dovecot --version > 1.1.14 I'm also running Postfix and using Dovecot/LDA as MDA so that we can use the Dovecot's Quota plugin. The thing is that if the user has exceeded
2008 Feb 20
4
Can't install Autocad14 anymore
Hi, I can't install Autocad14 more in release 0.9.54-1 (Debian Sid). The first error is: Any help? Thanks. $ WINEDEBUG=warn+all wine SETUP.EXE Invoking /usr/lib/wine/wine.bin SETUP.EXE ... warn:file:wine_nt_to_unix_file_name L"wineboot.exe" not found in /home/savio/.wine/dosdevices/c:/windows/system32 warn:ntdll:NtQueryFullAttributesFile
2013 Jul 18
0
Difference between arima(1, 1, 1) for y and arima(1, 0, 1) for diff(y)
Dear all, When I run an arima(1,1,1) on an I(1) variable, e.g. y, I get different estimates to when I first difference the variable myself, e.g y2<-diff(y), and then run arima(1,0,1) on y2. Shouldn't these two approaches give the same output? Any help will be much appreciated. george -- View this message in context:
2013 Jul 18
1
Difference between arima(1, 1, 1) of y and arima(1, 0, 1) of diff(y)
Dear all, When I run an arima(1,1,1) on an I(1) variable, y, I get different estimates to when I first difference the variable myself, e.g y2<-diff(y), and then run arima(1,0,1) on y2. Shouldn't these two approaches give the same output? Any help will be much appreciated. george
2011 Sep 06
2
Q and R mode in Principal Component Analysis
Hi, Can anyone explain me the differences in Q and R mode in Principal Component Analysis, as performed by prcomp and princom respectively. Regards L?vio Cipriano
2004 Nov 16
3
version 1.0.1 X 1.1.4
Hi, I am writing a program that should be able to compile using speex version 1.0.1 and speex version 1.1.4, but a I am getting some trouble to encode with one version e decode using the other. The program is taking care of the change in both speex_encode and speex_decode. The sample being coded or decoded has changed from float to short. To test it, I have modified the sampleenc.c that
2008 Apr 02
1
Can't print anymore
After the last upgrade wine can't print anymore. I tried print with notepad, the error is below: $ notepad Invoking /usr/lib/wine/wine.bin notepad.exe ... fixme:winspool:WINSPOOL_EnumPrinters We don't handle PRINTER_ENUM_CONNECTIONS A windows message appears with the information: Before you can perform printer-related tasks such as page setup or printing a document, you need to
2006 May 09
1
Asterisk settings Net2Phone
Hi, I?m looking for settings to configure net2phone carrier in my asterisk. I found this configurations, but it?s not work. I don?t known if this configuration is for voice line or voice access account. Anybody can help me, with other configuration? Thanks. ---- *sip.conf* [general] useragent = X-Lite release 1103m register => PHONENUMBER:PASSWORD@sip.net2phone.com [net2phone] type = peer