私はggplotで> 741行をプロットするのに助けが必要です。カラーラインggplot最終値r
- 特定の1行の色は変更しないでください。カラーラインはeciの最終値によってのみ割り当てられるべきです。 700行を超えるもちろん 先頭に各ラインの私は(コード例では、「単位」)の名前を表示したい
- 、各行の終わり
は肉眼で区別するのは難しいが、いずれかでありますラインをより区別しやすくする方法を提案しますか?あなたの望ましい結果を達成するために
df <- data.frame(unit=rep(1:741, 4), year=rep(c(2012, 2013, 2014, 2015), each=741), eci=round(runif(2964, 1, 741), digits = 0)) g = ggplot(data = df, aes(x=year, y=eci, group=unit)) + geom_line(aes(colour=eci), size=0.01) + scale_colour_gradientn(colours = terrain.colors(10)) + geom_point(aes(colour=eci), size=0.04) # The colour of the line should be determined by all eci for which year=2015
私は申し訳ありません - どういうわけか、私は今、適切な形式にコードをフォーマットすることはできません。 – BeSeLuFri