使用R中的ANOVA分析多列
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用R中的ANOVA分析多列相关的知识,希望对你有一定的参考价值。
我正在使用以下代码来分析我的数据
aov.models <- lapply(setdiff(names(mtcars), "cyl"), function(s) {
aov(as.formula(paste(s, " ~ cyl")),mtcars)
})
--但是,我不确定如何将列表输出的列表打印到文本文件(我尝试展平但收到错误:Error in as.character.factor(x) : malformed factor)
-一次只能汇总一个,例如summary(aov.models[[5]])
。
-此外,列表丢失了变量名,现在每个条目都只是一个数字。
答案
这是您想要的吗?
names <- list()
aov.models <- lapply(setdiff(names(mtcars), "cyl"), function(s) {
names <<- append(names, s) # Note the global assignment
aov(as.formula(paste(s, " ~ cyl")),mtcars)
})
names(aov.models) <- names
out <- capture.output(aov.models)
cat(out, file="myOutput.txt", sep="
")
根据以下评论中OP的要求。
[summary
提供了p值,print
(在演示代码中隐式调用的默认方法)没有提供。
out <- capture.output(lapply(aov.models, summary))
cat(out, file="myOutput.txt", sep="
")
以上是关于使用R中的ANOVA分析多列的主要内容,如果未能解决你的问题,请参考以下文章
R语言使用anova函数进行方差分析比较两个回归分析模型的差异从而决定是否删除某些预测变量(Comparing nested models using the anova function)
R语言使用aov函数进行单因素方差分析(One-way ANOVA)R语言使用gplots包中的plotmeans函数可用于生成组均值及其置信区间f的图(95%置信区间的治疗方法的曲线图)
R语言aov函数进行单因素方差分析(One-way ANOVA)使用Q-Q图来评估方差分析因变量的正态性Bartlett验证方差的相等性(齐次性)car包中的outlierTest函数异常检验