I'm trying to plot three accumulation curves in one plot only. I proceed the command to create df as follows:
df1 <- data.frame(sac1$richness,sac1$sites,sac1$sd) df2 <-
data.frame(sac2$richness,sac2$sites,sac2$sd) df3 <-
data.frame(sac3$richness,sac3$sites,sac3$sd)
I can plot each one separated in ggplot2 and it runs ok. But I have no way to put all curves together in one plot only. Do ggplot2 do that?
T have tried melt dfs, add=T and other things. Nothing worked. I've seen the GGPLOT2 book, but I did not find accumulation curves in there.