高度偏斜的 ggplot2 直方图的完整面板中断

Full panel break for highly skewed ggplot2 histogram

我使用 ggplot2 生成了高度偏斜的直方图。

我想将直方图的 x 轴分成两个面板。一个 x<50,另一个 x=>50,以便检测任何潜在模式(如果有)。所以第一个面板的 y 轴从 0 到 500000 左右,x 轴从 0 到 50。第二个面板的 y 轴从 0 到 100 左右,x 轴从 50 到 350。

谢谢

就条件而言:

ggplot(diamonds, aes(carat)) + geom_histogram() + facet_wrap(~(carat > 3), scale = 'free')