**已关闭。**此问题需要debugging details。目前不接受答案。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
19天前关闭
Improve this question的
我尝试了两种不同的方式Anova:
1.
lm(os ~ cd3_abs, data = dd) %>% anova()
字符串
这给出了这个错误:
Error in if (ssr < 1e-10 * mss) warning("ANOVA F-tests on an essentially perfect fit are unreliable") :
missing value where TRUE/FALSE needed
型
aov(formula = compete2 ~ cd3_abs, data = dd)
型
这给出了这个错误:
"Error in levels(x)[x] : only 0's may be mixed with negative subscripts"
型
我的数据看起来像:
cd3_abs OS
1 1.38 0
2 1.19 1
3 NA 1
4 2.32 0
5 0.9 1
6 3.3 1
型
1条答案
按热度按时间t40tm48m1#
两个明显的问题:1)由于
os
是二进制的,所以应该使用逻辑回归; 2)cd3_abs
列中有NA
,ANOVA应该排除它。典型代码如下:字符串