旋转R中散点图的标签

时间:2017-10-26 08:48:07

标签: r

我知道如何使用" text"在R中的散点图中为点添加标签。命令,如此问题所示:How can i label points in this scatterplot?

但是如何旋转文字标签使其从点垂直运行?

1 个答案:

答案 0 :(得分:1)

这样的东西?

ggplot(mtcars, aes(wt, mpg, label = rownames(mtcars))) + geom_point() + geom_text(angle=90,hjust=1.2)