search for: selectgg

Displaying 1 result from an estimated 1 matches for "selectgg".

Did you mean: selectg
2010 Mar 16
1
simple line graphics, labels and legend
...and I would like to use both for now: I first modify the data: selectG <- test[test$DIET=="G",]; selectG$DIET <- factor(selectG$DIET, levels="G") I do it for each group and: plot(selectG$SILIKATG, type="p", ylim=c(0,0.02), pch=1, col="black"); points(selectGG$SILIKATG, type="p", ylim=c(0,0.02), pch=2, col="red") And so on for each group, and then add the legend with: legend(x="topright", legend=c("G", "GG", "L", "LG"), pch=1:4, col=c("black", "red", "green&qu...