在R绘图中包含行内容作为标签

时间:2014-10-04 10:13:49

标签: r plot label

有没有办法将数据框列的内容包含在图上显示的标签上?像这张图片,我从网上拉出来的东西。如果我在列中的点旁边有数字,我怎样才能让它们显示在图中? enter image description here

1 个答案:

答案 0 :(得分:0)

发布作为答案。使用jbaums提到的text()。此示例直接来自http://www.statmethods.net/advgraphs/axes.html

attach(mtcars)
plot(wt, mpg, main="Milage vs. Car Weight", 
    xlab="Weight", ylab="Mileage", pch=18, col="blue")
text(wt, mpg, row.names(mtcars), cex=0.6, pos=4, col="red")