我在记事本中保存了一个名为 ANOVA 的数据框:
143 141 150 146 148
152 149 137 143 0
134 136 132 127 0
129 127 132 129 130
当我read.table()
在 R 控制台中使用命令时,即
> read.table("ANOVA.txt")
V1 V2 V3 V4 V5
1 143 141 150 146 148
2 152 149 137 143 0
3 134 136 132 127 0
4 129 127 132 129 130
Warning message:
In read.table("ANOVA.txt") :
incomplete final line found by readTableHeader on 'ANOVA.txt'
这个警告按摩的原因是什么?我该如何预防?
当我再次运行apply()
命令时
> apply("ANOVA.txt",2,sum)
Error in apply("ANOVA.txt", 2, sum) : dim(X) must have a positive length
为什么会出现这个错误?我该如何预防?