我有以下数据集(样本):
train <- data.frame(ps_ind_06_bin = c(FALSE, FALSE, FALSE, TRUE, TRUE, FALSE),
ps_ind_07_bin = c(FALSE, TRUE, TRUE, FALSE, TRUE, TRUE),
ps_ind_08_bin = c(TRUE, TRUE, TRUE, FALSE, TRUE, FALSE),
ps_ind_09_log = c(1, 3, 4, 2, 3, 2))
我有以下函数显示group_by()
操作的 ggplot:
get_charts1 <- function(mygroup){
quo_var <- enquo(mygroup)
train %>%
group_by(!!quo_var) %>%
count() %>%
ungroup() %>%
ggplot(aes_q(x = quo_var, y = quote(n), fill = quo_var)) +
geom_col() +
theme(legend.position = "none")
}
当我手动输入列名时它工作正常,例如:
get_charts1(ps_ind_07_bin)
但是,我想在几个列上使用这个函数,我把它放在一个向量上:
binarias <- train %>%
select(ends_with("bin")) %>%
colnames()
使用地图并采取一些建议,我尝试使用:
listaplots <- map(quo(!!! syms(binarias)), get_charts1)
但这给了我以下错误:
"Error: Can't splice at top-level"
有谁知道我需要做什么才能让它工作?