r-如何将facet_grid切换为facet_wrap



上下文:我正在尝试将facet_grid转换为facet_wrap以添加ncols。我知道cols=会议会改变,但我不确定如何改变。

graph <- ggplot(data, aes(week, positivity_rate, color=school)) + 
geom_line() +
facet_grid(cols=vars(conference)) 
graph
library(tidyverse)
ggplot(iris, aes(Petal.Length, Petal.Width, color=Species)) + 
geom_line() +
facet_grid(cols=vars(Species)) 
ggplot(iris, aes(Petal.Length, Petal.Width, color=Species)) + 
geom_line() +
facet_wrap(~Species,ncol = 2) 

相关内容

  • 没有找到相关文章

最新更新