如何在 ggplot2 中创建具有动态高度的(垂直)分面图,以使所有面具有相同的比例?

发布于 2024-11-14 10:07:27 字数 378 浏览 0 评论 0原文

创建多面图时,所有面都具有相同的尺寸。有什么方法可以绘制不同尺寸的图吗?特别是,有什么方法可以确保垂直堆叠的面都具有相同的 y 尺度?

我正在尝试以下操作:

qplot(score, ..count.., data=df, geom='density', position='stack') +
  facet_grid(method~., scales='free', space='free')

但我得到:

Error in if (length(range) == 1 || diff(range) == 0) { : 
  missing value where TRUE/FALSE needed

When creating faceted plots, all the facets have the same dimensions. Any way to make plots with differing dimensions? In particular, any way to make sure vertically stacked facets all have the same y-scale?

I'm trying the following:

qplot(score, ..count.., data=df, geom='density', position='stack') +
  facet_grid(method~., scales='free', space='free')

but I get:

Error in if (length(range) == 1 || diff(range) == 0) { : 
  missing value where TRUE/FALSE needed

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

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

发布评论

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

评论(1

九歌凝 2024-11-21 10:07:27

这个咒语最终对我有用:

qplot(score, ..count.., data=df, geom='density', fill=I('black')) +
opts(strip.text.y = theme_text()) +
scale_y_continuous(breaks=seq(0,999,by=50)) +
facet_grid(method~., scale='free', space='free'))

This incantation ended up working for me:

qplot(score, ..count.., data=df, geom='density', fill=I('black')) +
opts(strip.text.y = theme_text()) +
scale_y_continuous(breaks=seq(0,999,by=50)) +
facet_grid(method~., scale='free', space='free'))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文