ggplot'非有限值'错误

时间:2017-04-18 15:02:49

标签: r ggplot2 tidyverse tidytext

我有一个R数据帧(df),如下所示:

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”

1 个答案:

答案 0 :(得分:12)

在你工作的example plot here中,n / total更高的尾巴很长,因此使用xlim()。尝试制作您的绘图而不改变x轴的极限;在你的情况下,你根本不需要调整它。

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