命令
a = matrix( C(1,2,3,4), nrow=2, ncol=2)
在[r]中返回以下错误:
Error in C(1, 2, 3, 4) : object not interpretable as a factor
这让我感到很奇怪?
答案 0 :(得分:1)
c
中的c(1,2,3,4)
必须为小写。
> a = matrix( C(1,2,3,4), nrow=2, ncol=2)
Error in C(1, 2, 3, 4) : object not interpretable as a factor
> a = matrix( c(1,2,3,4), nrow=2, ncol=2)
> a
[,1] [,2]
[1,] 1 3
[2,] 2 4