私はこのggplotを持っています
ggplot(dt1, aes(x=x,y=y)) +
geom_point(color="orange",shape=1, size=1.5) +
stat_function(fun=function(x) 1.05+.65*sqrt(x)+.1*x, color="blue" ) +
stat_function(fun=function(x) 1.05-.65*sqrt(x)+.1*x, color="blue" ) +
stat_smooth(method="lm",formula="y~-1+x",fullrange=TRUE,se = FALSE, color="black")
データは単純です:
> str(dt1)
'data.frame': 1451 obs. of 2 variables:
$ y: int 70 161 151 207 100 268 184 156 246 43 ...
$ x: int 679 1818 1650 2325 992 2412 1830 1398 2207 495 ...
データのサンプルは次のとおりです。
dt1 <- structure(list(y = c(70L, 161L, 151L, 207L, 100L, 268L, 184L, 156L, 246L, 43L, 125L, 135L, 45L, 93L, 88L, 162L, 131L, 143L, 227L, 177L, 124L, 203L, 243L, 193L, 182L, +
223L, 259L, 215L, 170L, 288L, 67L, 141L, 272L, 160L, 66L, 123L, 226L, 383L, 149L, 354L), x = c(679L, 1818L, 1650L, 2325L, 992L, 2412L, 1830L, 1398L, 2207L, 495L, 1071L, 1200L, 723L, 1162L, 1075L, 1431L, 1169L, 1665L, 2136L, 1402L, 896L, 1951L, 2222L, 1960L, 1601L,+
1787L, 2277L, 1861L, 1432L, 2451L, 626L, 1292L, 2216L, 1499L, 766L, 906L, 2157L, 3419L, 1352L, 3346L)), .Names = c("y", "x"), row.names = c(NA, 40L), class = "data.frame")
次の3つのエントリで凡例を作成したいと思います。
- 正しいタイプのポイントを示すgeom_point用の1つ
- 黒い線を示すstat_smooth用の1つ
- 1つはstat_function用(つまり、2つではなく1つの凡例エントリ)で、青い線を示しています
どうすればこれを達成できますか?