Are there any SAS, R or IBIS-PH programmers here?
The Lounge
2
Posts
2
Posters
0
Views
1
Watching
-
I am not a R programmer but I use it sometimes. Here is program I tested that plot global annual temperatures since 1856: www <- "http://www.massey.ac.nz/~pscowper/ts/global.dat" Global <- scan(www) Global.ts <- ts(Global, st = c(1856, 1), end = c(2005, 12),fr = 12) Global.annual <- aggregate(Global.ts, FUN = mean) plot(Global.ts) plot(Global.annual)
jhaga