次のようなデータフレームがあります。
x <- data.frame(time = c('1', '2', '3'), perc = c(0.2, 0.4, 0.6, 0.3, 0.55, 0.69, 0.2, 0.22, 0.35), type=c(rep('a', 3), rep('b', 3), rep('c', 3)))
そして、このようなプロットをしたい (以下) が、これらの異なる色を使用しますc('#0023a0', '#f9a635', '#bebec0')
:
ggplot(x, aes(time, perc, group=type, colour=type, shape=type)) + geom_point(size=4) + geom_line(size=1)
scale_colour_hue
、scale_shape_discrete
およびを使用してさまざまな方法を既に試しscale_fill_manual
ましたが、成功しませんでした。