我正在尝试使用ggplot绘制“ geom_point”图。这些点具有15个类别(部门),这使得很难区分不同类别的部门变量。
我使用了这段代码
ggplot(bas_prod, aes(y=Sal_Prom, x=Complejidad,
color=sector, shape=sector))+
geom_point(size=2)+
geom_boxplot()+
geom_smooth(method = "lm")+
scale_shape_manual(values=seq(0,15))
获取以下链接中包含的图形:
https://i.stack.imgur.com/nI5Hf.jpg
我想在每行上都贴上标签,但不知道该怎么做。
有什么主意吗?
谢谢!
答案 0 :(得分:0)
这可能会对您有所帮助,尽管我不建议您像这样可视化您的数据。
library(tidyverse)
iris %>%
ggplot(aes(Species,Petal.Length,col=Species,shape=Species))+
geom_point()+geom_boxplot()+
geom_label(aes(label=Species),show.legend = F)