自从R中的最后一个matrixstats更新以来,colSds不起作用
自从matrixStats(v0.10.0,2014-06-07)上次更新以来,似乎colSds不工作。 它之前对我有用,但现在它返回一个错误信息:
错误:没有适用于'colCounts'的方法应用于类“data.frame”的对象
这里是一个例子:
library(matrixStats)
data(mtcars)
colSds(mtcars)
我在Windows 7(x64)上使用R版本3.1.0(2014-04-10)。 平台:x86_64-w64-mingw32 / x64(64位)。 有没有人有线索出了什么问题,我该怎么办?
谢谢,塔马斯
它看起来像colSds只适用于矩阵。 这对我有用。
colSds(as.matrix(mtcars))
mpg cyl disp hp drat wt
6.0269481 1.7859216 123.9386938 68.5628685 0.5346787 0.9784574
qsec vs am gear carb
1.7869432 0.5040161 0.4989909 0.7378041 1.6152000
链接地址: http://www.djcxy.com/p/77275.html
上一篇: colSds does not work since the last matrixstats update in R