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

来源:2-3 R语言基础 矩阵和数组

慕设计226598

2019-03-22 16:43

> 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


写回答 关注

1回答

  • 蒸包
    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列啦

R语言基础

本R语言基础教程,教你如何在R中操纵自己数据,快速入门

79670 学习 · 262 问题

查看课程

相似问题