10 2015 档案
摘要:library(devtools)install_github("jennybc/gapminder")> library(gapminder)> data(gapminder)> head(gapminder) country continent year lifeExp po...
阅读全文
摘要:dat = read.csv("femaleMiceWeights.csv")mean(dat[13:24,2]) - mean(dat[1:12,2])s = split(dat[,2], dat[,1])stripchart(s, vertical=TRUE, col=1:2)abline(h=...
阅读全文
摘要:R版本:3.2.2install.packages("devtools")download and install Rtools 3.3 from http://cran.r-project.org/bin/windows/Rtools/ and then run find_rtoollibrary...
阅读全文
摘要:在本地建立文件new directory\empty project\project1在官网下载文件:点击进入“femaleMiceWeights.csv”,再点击“Raw”,右击“网页另存为”,保存名字“femaleMiceWeights.csv”在本地文件"project1"中新建R Scrip...
阅读全文