在R中,expand.grid()函数可以返回几个元素所有可能的组合,使我们免于多层遍历的苦恼。比如如下例子:
sex <- c('female', 'male')
age <- c(10, 20, 30)
major <- c('math', 'physics', 'art')
expanded_data <- expand.grid(sex, age, major)
print(expanded_data)
上述代码输出:
其实这个就是我们提供的sex,age,major中的变量分别组合起来得到的,类似于,遍历三层循环得到所有的排列组合。
网友评论