web-dev-qa-db-ja.com

これらの灰色のボックスのfacet_gridラベルを削除しますか?

右側の灰色のボックスにあるラベルを右側から削除してください。例を挙げましょう:

p <- ggplot(mtcars, aes(mpg, wt, col=factor(cyl))) + geom_point()
p + facet_grid(cyl ~ .)

enter image description here

前もって感謝します!

ファン

17
Juan

次のようにします。

p <- ggplot(mtcars, aes(mpg, wt, col=factor(cyl))) + geom_point()
p <- p + facet_grid(cyl ~ .)
p <- p +theme(strip.text.y = element_blank())

長方形なし

p <- ggplot(mtcars, aes(mpg, wt, col=factor(cyl))) + geom_point()
p <- p + facet_grid(cyl ~ .)
p <- p + theme(strip.background = element_blank(),
   strip.text.y = element_blank())

enter image description here

37
Ruthger Righart