我想创建facet_grid
/facet_wrap
绘图,x 轴在每个图表下重复,但刻度仅出现在最低图表上。
这是一个 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 轴出现两次但两次都使用刻度的绘图示例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 轴。