数据如下
我似乎找不到以下问题的答案,但我有一个ggplot2,我想把图上的点改为白色和正方形、圆形、闭合正方形和闭合圆形。
代码如下所示:
library(ggplot2)
Horticulture$Species<-factor(Horticulture$Species)
Horticulture$Speciesf<-factor(paste("ID",Horticulture$Species,sep=" "))
ggplot(Horticulture,aes(x=Time,y=growth,col=Horitculture:Speciesf))+
geom_point()+geom_errorbar(aes(ymin=growth-SE,ymax=growth+SE))+
geom_line() + xlab("Time [days]")+
theme_bw(legend.title=element_blank(),
legend.position = c(0.85, 0.85))+
ylab(expression(paste("Growth [",days,"per measurement")))```
1条答案
按热度按时间68bkxrlz1#
这能给予你的需要吗