我使用R中的mtcars数据集绘制了散点图,x轴上为mpg,y轴上为wt。我现在正尝试根据第一列(汽车的型号)来标记数据点,但是由于此列没有任何名称,因此我无法标记出地块
attach(mtcars)
plot(mpg,wt,
xlab = "Miles per Gallon",
ylab = "Weight of car (in metric tonnes)",
col = "blue" , pch = 19)
text(mpg,wt, labels = "?" , cex = 0.7)