15

df我有一个看起来像这样的 R 数据框 ( ):

blogger; word; n; total
joe; dorothy; 17; 718
paul; sheriff; 10; 354
joe; gray; 9; 718
joe; toto; 9; 718
mick; robin; 9; 607
paul; robin; 9; 354
...

我想用ggplot2绘图n除以total每个blogger.

我有这个代码:

ggplot(df, aes(n/total, fill = blogger)) +
  geom_histogram(show.legend = FALSE) +
  xlim(NA, 0.0004) +
  facet_wrap(~blogger, ncol = 2, scales = "free_y")

但它会产生这个警告:

Warning message:
“Removed 1474 rows containing non-finite values (stat_bin).”Warning message in rep(no, length.out = length(ans)):
“'x' is NULL so the result will be NULL”
4

1 回答 1

20

在您正在使用的示例图n / total中,在 high 处有很长的尾巴,因此使用xlim(). 尝试在不改变 x 轴限制的情况下绘制绘图;在您的情况下,您可能根本不需要调整它。

ggplot(df, aes(n/total, fill = blogger)) +
  geom_histogram(show.legend = FALSE) +
  facet_wrap(~blogger, ncol = 2, scales = "free_y")
于 2017-04-21T11:58:48.597 回答