2017-12-06 15 views

答えて

3
library(ggplot2) 
ggplot(mtcars) + aes(factor(cyl), wt) + 
geom_bar(stat = "summary", fun.y = "mean") + 
facet_grid(~gear, switch = "x") + 
theme(strip.placement = "outside") 
:私はこのようなものを探しています

currently

library(ggplot2) 
ggplot(mtcars) + aes(factor(cyl), wt) + 
geom_bar(stat = "summary", fun.y = "mean") + 
facet_grid(~gear, switch = "x") 

は、現在、それはこのようになります

enter image description here

関連する問題