search for: forc1

Displaying 1 result from an estimated 1 matches for "forc1".

Did you mean: force
2010 Oct 07
1
Forecasting with R/Need Help. Steps shown below with the imaginary data
...nivariate time series. data Data1; input RR; datalines; 12 14 17 15 13 15 15 14 15 14 16 15 15 18 16 16 15 14 15 16 16 14 13 12 ; run; 1. I successfully took this data thru xport into R using the below codes: libname xportout xport 'H:\Care Transition Evaluation\CT-Codes\SAS\gross up\Data\Forc1.xpt'; data xportout.Forc1; set Data1; run; setwd("H:/Care Transition Evaluation/CT-Codes/SAS/gross up/Data") getwd() Forc<-read.xport("Forc1.xpt") attach(Forc) names(Forc) Forc 1. Used the auto.arima codes: fit <- auto.arima(Forc) fcast <-forecast(fit) pl...