控制各个面的纵横比,facet_wrap

发布于 2024-11-28 09:14:47 字数 45 浏览 1 评论 0原文

有没有办法控制facet_wrap()图中单个图的大小/纵横比?谢谢, -D

Is there a way to control the size/aspect ratio of an individual plot within a facet_wrap() plot? Thanks,
-D

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

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

发布评论

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

评论(1

林空鹿饮溪 2024-12-05 09:14:47

是否可以通过使用 scales = "free_x"scales = "free_y"< 来“释放”x 轴、y 轴或两个 scales 的解决方案/code> 还是 scales = "free"

下面是 facet_wrap 文档页面 中的一个示例,

library(ggplot2)
p <- qplot(displ, hwy, data = mpg)
p + facet_wrap(~ cyl, scales = "free") 

Could it be a solution simply to 'free' the x axis, y axis or both scales with either scales = "free_x", scales = "free_y" or scales = "free"?

Here one example from the facet_wrap documentation page,

library(ggplot2)
p <- qplot(displ, hwy, data = mpg)
p + facet_wrap(~ cyl, scales = "free") 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文