42

以下是一种情况:

group1 <- seq(1, 10, 2)
group2 <-  seq(1, 20, 3)
x = c(group1, group2)
mydf <- data.frame (X =x , Y = rnorm (length (x),5,1), 
 groups = c(rep(1, length (group1)), rep(2, length(group2))))

ggplot(mydf, aes(X, Y, group= groups)) + geom_point()+ facet_grid (.~ group)

在下图中,不同的方面按 x 限制进行缩放:

 ggplot(mydf, aes(X, Y, group= groups)) + geom_point()+ 
   facet_grid (.~ group, scales = "free_x")

由于 x 的总宽度有意义,我想产生不同宽度的刻面,而不仅仅是不同的比例。因此,预期的 facet 1 的宽度应该是 2 的一半。

在此处输入图像描述

4

1 回答 1

63

如果我对您的理解正确, space = "free_x"请在facet_grid. 据我所知,facet_wrap从未支持空格参数,但许多facet_wrap命令可以转换为facet_grid命令。

library(ggplot2)

ggplot(mydf, aes(X, Y)) + geom_point()+ 
facet_grid (.~ groups, scales = "free_x", space = "free_x")

在此处输入图像描述

如果您想在 x 轴上使用相同样式的标签:

ggplot(mydf, aes(X, Y)) + geom_point()+ 
 scale_x_continuous(breaks = seq(0,20,2)) +
 facet_grid (.~ groups, scales = "free_x", space = "free_x")

在此处输入图像描述

于 2012-05-04T20:02:03.757 回答