0

这是我的例子:

set.seed(1)
col_1 <- sample(LETTERS[1:4], 1000, replace=TRUE)
col_2 <- sample(LETTERS[5:8],1000, replace = TRUE)
col_3 <- sample(LETTERS[9:12],1000, replace = TRUE)
sample_df <- data.frame(col_1,col_2,col_3) 

我可以通过以下行获得列联表:

with(df,table(col_1, col_2))

现在,如果我有很多变量,我想在表中使用向量,如下所示:

my_var <- c('col_1', 'col_2', 'col_3)
with(sample_df, table(my_var))

但它不起作用。任何解决方法?

4

1 回答 1

1

尽可能简单!

table(sample_df[my_var])
于 2017-01-10T18:19:20.283 回答