1.仙台市のデータ
http://www.city.sendai.jp/kikaku/seisaku/toukei/toukeijihou/special_edition/215/sp2/h_3.html
| x <- read.table("us_gnp_u_29-40.csv",sep=",",skip=1);x y <- x[,5]#U z <- x[,4]#GNP y;z;l=z~y;l#線形の関係 plot(l);ans1=lm(l);print(ans1);abline(ans1) summary(ans1) |