我正在尝试在数据点上添加标签,以找到人口最少的前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)
这就是情节目前的样子
但我想在每个数据点上都有国家/地区代码。 这可能吗?
答案 0 :(得分:0)
scatterplotMatrix()
包中的 car
有一个arg id.n
来控制点标记,id.method
来提供各种方法。
您想使用类似
的内容scatterplotMatrix(population, id.n=5, id.method="y")
默认情况下,观察的行名称用作点标签。