问答详情
源自:2-3 R语言基础 矩阵和数组

x1<-array(1:24,dim=c(2,3,4))我执行后的效果,和老师讲的不一样。只有一个两行三咧

> x1<-array(1:24,dim=c(2,3.4))

> x1

     [,1] [,2] [,3]

[1,]    1    3    5

[2,]    2    4    6

> x1

     [,1] [,2] [,3]

[1,]    1    3    5

[2,]    2    4    6


提问者:慕设计226598 2019-03-22 16:43

个回答

  • 蒸包
    2019-03-22 19:07:06
    已采纳

    大佬,你的代码里dim(2,3,4)打成了dim(2,3.4)

    array usage里:

    dim

    the dim attribute for the array to be created, that is an integer vector of length one or more giving the maximal indices in each dimension.

    所以相当于as.integer(3.4) equals 3

    自然就是2行3列啦