我使用 ggplot 包比较新。我想使用名称“Sp1”和“Sp2”重命名绘图的图例。我试图使用以下代码来实现它,但我一直无法做到。
这是代码:
t<-read.table ("covartimesfinal2.txt", header=T)
attach(t)
p <- ggplot(t,aes(x=Ratio,y=Time)) + geom_point(aes(shape=factor(Sp)))
p + geom_smooth(aes(linetype=factor(Sp), ),colour="black", method='lm',
se=F)+theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank(),panel.background = element_blank(), axis.line =
element_line(colour = "black"))+
scale_shape_discrete(name ="Species",labels=c("Sp1", "Sp2"))
我的目标是摆脱名为“因子(Sp)”的图例,并使轴的数字变为黑色而不是灰色。
提前致谢!请在附件中找到一个示例图