t.default出错(复制(长度(p),p))

时间:2017-12-15 15:02:17

标签: r matrix

我有以下数组:

> p
     [,1]
[1,]  0.2
[2,]  0.4
[3,]  0.0
[4,]  0.0
[5,]  0.4
[6,]  0.0

,其中

> typeof(p)
[1] "double"

> str(p)
 num [1:6, 1] 0.2 0.4 0 0 0.4 0

当我去执行代码时

t(replicate(length(p), p))

我收到了错误:

 Error in t.default(replicate(length(p), p)): argument is not a matrix

为什么呢?

0 个答案:

没有答案