Re: [R] arima forecast function

2008-08-16 Thread warthog29
Thanks for the correction Gabor. I am still new to R. Gabor Grothendieck wrote: > > forecast must be quoted: > > install.packages("forecast") > > and in this case its actually part of the forecasting bundle so we > could also do this: > > install.packages("forecasting") > > Look at ?install

Re: [R] arima forecast function

2008-08-12 Thread Gabor Grothendieck
forecast must be quoted: install.packages("forecast") and in this case its actually part of the forecasting bundle so we could also do this: install.packages("forecasting") Look at ?install.packages and note the way it works for different values of the dependencies argument. On Tue, Aug 12, 20

Re: [R] arima forecast function

2008-08-12 Thread warthog29
I initially input the following commands, and got the corresponding errors: install.packages(forecast) Error in install.packages(forecast) : object "forecast" not found > library(forecast) Error in library(forecast) : there is no package called 'forecast' I was finally able to get it installed

Re: [R] arima forecast function

2008-08-12 Thread Nordlund, Dan (DSHS/RDA)
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of warthog29 > Sent: Tuesday, August 12, 2008 3:40 PM > To: r-help@r-project.org > Subject: [R] arima forecast function > > > hi: > > I am trying to fit prediction intervals for an arima object. > My s