ggplot2の小技(色の順番)

色の順番を自分で決める

scale_fill_manual(values = c("red", "yellow"))

scale_colour_manual(values = c("red", "yellow"))

これを+で足す。

ページTOPへ