0

可能重复:
如何更改 ggplot2 中的线条和形状颜色?

pdf('test',onefile=T)
    g <- ggplot(test,aes(x=timepoints,y= mean,ymax = mean + sde, ymin = mean  - sde,colour=Experiment)) + 
       geom_errorbar(width=2) + 
       geom_point() +
       geom_line() +
       xlab('Time (min)') +
       ylab('Fold Induction') +          
       opts(title = '5 min v 6 hr KCl treatment')    
    print(g)
dev.off()

这就是它打印的内容。

在此处输入图像描述

如何将颜色从默认更改为红色和黑色?所以'5 min'是红色的,'6 hr'是黑色的?

4

1 回答 1

4

Use scale_manual to manually define the scales:

g + scale_colour_manual(values = c("red", "black"))
于 2012-09-11T21:15:16.163 回答