向条形图添加标签?

时间:2011-11-12 13:31:57

标签: r graph plot

stripchart

x <- c(2, 8, 11, 19)
stripchart(x)

如何在积分旁边添加标签2,8,11,19?

1 个答案:

答案 0 :(得分:2)

使用text并指定y位置。条形图使用y=1绘制,因此text(x, y=1.1, ...)会在点上方略微绘制标签。

x <- c(2, 8, 11, 19)
stripchart(x)
text(x, 1.1, labels=x)

enter image description here