创建不同长度的 3 维数组
我是 R 的初学者。 我想创建一个 3 维数组,但无法定义每个维度的长度。 我正在分析学生在课堂上的成绩。有10个班级,但学生人数不同。而“等级”将为100-90、89-80、79-70……直到有学生获得相关分数。 我打算对多个数组使用几个 for 循环。 如果我创建一个 3 维数组,
arr<-array(data, dim=c(??,??,??)), dimnames= list("class","grade","average Marks") )
I am a beginner of R.
I want to create a 3 dimensional array but I can not define the length of each dimension.
I am analysing students' marks in a class. There are 10 classes but it has a different number of students. And "Grade" will be 100-90, 89-80, 79-70... until there will be any student who got the relevant marks.
I was going to use a couple of for-loops with the multiple array.
If I create a 3 dim array,
arr<-array(data, dim=c(??,??,??)), dimnames= list("class","grade","average Marks") )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能。
数组具有固定维度。您可以使用每个维度上的最大值,并将其与
NA
一起分配来填充。列表是不同长度甚至不同组件类型的替代方案。
You can't.
Array are of fixed dimensions. You could use the maximum along each dimension and allocate that along with
NA
to fill in.Lists are the alternative for varying lengths, and even different component types.
您确实不想为此使用矩阵。数据框允许您混合使用多种数据类型。
You really do not want to use a matrix for this. A dataframe allows you to have a mixture of data types.