[R] background color

2007-04-17 Thread yannig goude
hi,
  I want to add different colors on the background of a classical plot. Each 
color is associated to an interval of the x axis.
  example: the background is red on the interval [1,10], blue on [11,20].
  I try the rect function but it isn't appropriate for the background.
  Can any one can help me please?
  best regards.
 

 
-

[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] SARIMA with dynlm

2007-01-23 Thread yannig goude
Does anyone have an exemple of how to fit a SARIMA model , with a MA part, with 
the package dynlm?
  Best regards.
   


-

[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] arima function

2007-01-18 Thread yannig goude
I want to modify the arima function. Can anyone can tell me what are the 
objects: R_ARIMA_transPars,R_ARIMA_Like, R_ARIMA_Invtrans, R_ARIMA_undoPars...?
  Thanks.
  best regards.
  YG
   


-

[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] SARIMA problem

2007-01-16 Thread yannig goude
Hi, 
  I have a problem with the ARIMA function, occuring when I set the parameter 
per (the period of SARIMA model) to a high value (see the exemple bellow). It 
seems that when per is high it takes a too large amount of memory to calculate 
the model and I have a memory storage error. But I don't really understand why 
it takes more memory when per is high, as there is the same number of parameter 
to estimate.
  Does anyone know what to do?
   
  exemple:
  x = arima.sim(list(order=c(1,0,0), ar=.9), n=1000)
per-200
arima(x, order = c(1, 0, 0),seasonal = list(order =c(1, 0, 0), period 
=per),method='CSS')
  fails whereas for per=175 it works well.
   
  
 
   
   


-

[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.