- 博客(2)
- 收藏
- 关注
原创 方差分析(单/双/多)
aggregate(response,by=list(trt),FUN=mean)#通过aggregate函数计算response的平均值。fit <- aov(weight~ gesttime+ dose,data = litter)#gesttime为协变量。attach(cholesterol)#attach函数可将数据框的列名添加到R中,可直接使用列名,不用$summary.aov(fit)#分别查看每个变量的结果。xtabs(~supp+dose)#xtabs统计频率。#确保dose为因子。
2024-09-28 09:19:21 260
原创 线性回归分析
lines(women$height,fitted(fit2),col="red")#lines可绘制曲线;fit <- lm(weight ~ height,data=women)#lm函数进行线性回归分析,右边因变量。fit2 <- lm(weight ~ height+I(height^2),data=women)#多项式回归。plot(women$height,women$weight)#绘制散点图。summary(fit)#查看详细分析结果summary.lm(fit)
2024-09-26 21:09:03 115
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人