首先,我有一个令人尴尬的问题。 R中的逗号代表什么?
例如,每当有类似unique[x3,]之类的代码时,括号前的逗号是做什么的?

第二,

mosaicplot(UCBAdmissions[,,i],)


方括号内的两个逗号是什么意思?

最佳答案

理解这些事情的最好方法就是自己尝试一下,看看它们在做什么!

一般来说:

mydf[1, ] ## Get the first row
mydf[, 3] ## Get the third column


UCBA任务有两个以上的方面,因此

UCBAdmissions[, , 1] ## Get the first table in the 3D array


当然,这些可以组合。 UCBAdmissions样本数据是一组6张二乘二的表:

dim(UCBAdmissions)
# [1] 2 2 6


假设您只需要前两个表中的第一行:

UCBAdmissions[1, , c(1, 2)]
#         Dept
# Gender     A   B
#   Male   512 353
#   Female  89  17

08-25 06:02