Labeling in ggplot on top of point

后端 未结 0 871
误落风尘
误落风尘 2021-01-03 16:51
library(dplyr)
#Code
mpg %>%
  mutate(Color=ifelse(class==\'2seater\',\'2seater\',\'Other\')) %>%
  ggplot(aes(displ, hwy, colour = Color)) + 
  geom_point()
<         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题