barplot中缺少标签

时间:2017-09-14 17:46:39

标签: r bar-chart

我有一个我想用barplot()可视化的数据集。我的问题是,为什么在附加text()时会显示某些标签,以及如何解决此问题?

例如这是我的表

table(test$Freq)

   2    3    4    5    6    7    8    9   10   11   12   14   16   44 
6338 2544 1072  394  102   29   11    9    5    2    3    1    1    1 

以下条形图将错过第一个标签:

barplot(table(test$Freq))
text(x = xx, y = test$Freq, label = test$Freq, pos = 3, cex = 0.8, col = "red")

enter image description here

1 个答案:

答案 0 :(得分:3)

看起来文字正在图表之外绘制。

在致电ylim时尝试调整barplot值。这应该可以解决您的问题。