我正在尝试使用以下代码拟合发行版:
"dependencies": {
"simple-xmpp": "^1.3.0",
"dynamodb": "^1.1.2",
"html2plaintext": "^2.1.2",
"memcache-plus": "0.2.18",
"memjs": "^1.2.0",
"node-schedule": "^1.3.1",
"request": "^2.83.0",
"socket.io-client": "0.9.16"
}
我收到以下错误:
fitdist(x,distr =“ gamma”,method =“ mle”)中的错误: 数据必须是长度大于1的数字矢量
X是一个数字变量。绘制时看起来像这样。1
为什么会出现此错误。任何提示,不胜感激。
答案 0 :(得分:0)
> class(x)
[1] "numeric"
> str(x)
atomic [1:18839] 7 175 386 375 397 333 378 394 330 346 ...
- attr(*, "na.action")=Class 'omit' int [1:17] 1 209 267 286 288 297 299 300 304 305 ...
> dput(head(x, 20))
c(7, 175, 386, 375, 397, 333, 378, 394, 330, 346, 306, 344, 308,
278, 291, 284, 252, 294, 277, 241)
谢谢