Displaying 1 result from an estimated 1 matches for "dataimportextra".
2011 Jan 29
1
data extrapolation function
Readers,
Data was imported using the read csv command:
dataimport<-read.csv("/path/to/dataimport.csv")
10,2000
12,2001
13,2002
15,2003
17,2004
Using the help contents for 'predict.lm' (i.e. ?predict.lm) a new data
frame was created
dataimportextra<-data.frame(x=seq(1990,2010,1))
predict(lm(dataimport),dataimportextra[,2],se.fit=TRUE)
write.csv<-(dataimportextraout,"/path/to/dataimportextra.csv")
I was expecting to see in the file dataimportextra.csv something like:
1,1990
2,1991
3,1993
...
to previously known data
10,2000
....