在R中的绘图上向数据点添加标签

时间:2016-11-10 18:51:24

标签: r plot statistics

我正在尝试在数据点上添加标签,以找到人口最少的前5个国家。

Smallestpop.order = order(population$X2014)
smallref = population[Smallestpop.order,]
smallref[1:5,]
plot(smallref[1:5,3:,])
 text(smallref[1:5],labels=smallref$Country.Code[1:5],adj = NULL,
 pos = 1, offset = 0.5, vfont = NULL,
 cex = 1, col = NULL, font = NULL)

这就是情节目前的样子

enter image description here

但我想在每个数据点上都有国家/地区代码。 这可能吗?

1 个答案:

答案 0 :(得分:0)

scatterplotMatrix()包中的

car有一个arg id.n来控制点标记,id.method来提供各种方法。

您想使用类似

的内容
scatterplotMatrix(population, id.n=5, id.method="y")

默认情况下,观察的行名称用作点标签。