1.用R语言导入Excel文件中“xlsx”和“xls”格式的数据。
(1)安装“readxl”包:
>install.packages("readxl")
(2)将Excel数据导入R中,文件位于“C:\Users\Celin\Desktop”路径的“breads.xlsx”中:
>library(readxl)
>x<-read_excel("C:\\Users\\Celin\\Desktop\\breads.xlsx")
>x
(3)其他方法:弹出文件对话框,选取数据文件。
>x<-read_excel(file.choose())
2.mean() 函数,计算平均值
例:>mean(x$weight)
3.sd() 函数,计算标准差
例:>sd(x$weight)
4.t.test() 函数,进行均值差异检验
例:>t.test(x$weight,mu=400) mu=400,指定总体均值
5.运用ggplot2程序包绘制直方图。
alpha指透明度,colour指轮廓色,fill指填充色,binwidth指组距,xlab指x轴名字,ylab指y轴名字,ggtitle指表名
geom_histogram指直方图,geom_point指点图,geom_line指折线图,geom_bar指条形图,geom_boxplot指箱线图,
geom_density指曲线密度图……
*****参考:http://blog.sina.com.cn/s/blog_15ff3b88f0102we75.html *****
例:> library(ggplot2)
> ggplot(x,aes(x=weight))+geom_histogram(binwidth=10,fill="steelblue",colour="black",alpha=0.5)+xlab("面包的重量")+ylab("个数")+ggtitle("面包数据的直方图")