各グラフの下で x 軸が繰り返されるように作成facet_grid
/facet_wrap
プロットしたいと思いますが、目盛りは最も低いグラフにのみ存在します。
を使用して x 軸が一度だけ存在するプロットの例を次に示します。facet_grid
ggplot(mtcars, aes(y=mpg,x=cyl)) +
facet_grid(am~., scales="free") +
geom_point() +
theme_classic() +
theme(strip.background = element_rect(colour="white", fill="white"),
strip.text.y = element_blank())
以下は、x 軸が 2 回表示されているが、両方ともティックが使用されているプロットの例です。facet_wrap
ggplot(mtcars, aes(y=mpg, x=cyl)) +
facet_wrap(~am, ncol=1, scales="free") +
geom_point() +
theme_classic() +
theme(strip.background = element_rect(colour="white", fill="white"),
strip.text.x = element_blank())
上のグラフの x 軸に目盛りがないことを除いて、上のグラフと同じプロットが必要です。または、必要に応じて、最初のプロットと同じプロットを希望しますが、上部のグラフに x 軸があります。