我想在传说与盒子的符号一起有意味的象征。 所以我的传说应该包括“曝光1,曝光2,曝光3”,而且这个词的意思是其标志。 如何做到这一点使用ggplot R中?
这是我使用产生箱线图的代码:
library(ggplot2)
mydata <- read.csv("~/mydata.csv")
bp<-ggplot(mydata,aes(x=Category,y=MeanValues,,fill=as.factor(Category))) + geom_boxplot()
bp+labs(x = NULL, y = "Result")+ theme_bw()+stat_summary(fun.y = mean, geom = "point",shape = 19, size = 3,show_guide = FALSE)+theme(legend.position="top")+ guides(fill=guide_legend(title=NULL))+ theme(axis.title.y = element_text(size=20, colour = rgb(0,0,0)),axis.text.y = element_text(size=12, colour = rgb(0,0,0)),axis.text.x = element_text(size=12, colour = rgb(0,0,0)))+scale_y_continuous(limits = c(0, 1800), breaks = 0:1800*200)
该数据可在https://my.cloudme.com/josechka/mydata
以上代码生成的箱线图与所述框内的平均值。 然而,传说中只包含类的符号。 我需要的是添加到该框内后点代表每个类别的平均值的传说。 是否有可能做到这一点?