2
我有一長串列名,我想在facet_grid
中使用它。我想選擇一些列名稱,並把+
作爲facet_grid
函數要求。取消列名並在facet_grid中使用
我試過這個與mtcars
,但無法弄清楚爲什麼unlist
或paste
不起作用。
names=paste(unlist(names(mtcars)[c(1,3,5)]),sep='+')
library(ggplot2)
ggplot(mtcars, aes("", hp)) +
geom_boxplot(width=0.7, position=position_dodge(0.7)) +
theme_bw() +
facet_grid(. ~ names,switch = 'both',labeller = label_both)
錯誤combine_vars(數據,則params plot_env $,COLS,滴=參數$滴) :至少一層必須包含用於磨製
感謝布賴恩。你的解決方案很優雅! – Alexander