ggplot2 中的多面板图:“自由且平等”的尺度?

发布于 2024-12-11 22:41:05 字数 147 浏览 0 评论 0原文

我已向 ggplot 图发出以下命令:

facet_wrap(~variable,scales="free")

但我也希望每个面板的 x 和 y 比例相等(而面板之间的限制各不相同)。这在ggplot2中可能吗?

I have issued the following command to a ggplot figure:

facet_wrap(~variable,scales="free")

but I also want for the x and y scales to be equal for each panel (while the limits vary from panel to panel). Is this possible in ggplot2?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫九 2024-12-18 22:41:05

如果您使用facet_grid,则可以指定space='free'。我想这就是你想要的。

require(ggplot2)

x = 1:9
group = rep(1:3, each=3)
data = data.frame(x, group)
qplot(x, x, data=data) + facet_grid(~group, scales='free', space='free')

If you use facet_grid, you can specify space='free'. I think this is what you want.

require(ggplot2)

x = 1:9
group = rep(1:3, each=3)
data = data.frame(x, group)
qplot(x, x, data=data) + facet_grid(~group, scales='free', space='free')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文