I am using R to do a simple rarecurve, it makes a nice graph and i can colour and add lables to the axis or title. But I can not get it to show the plot labels.
Someone help?
Below is what I started with.
library(vegan)
rarecurve(orders, step=1, xlab="Individuals", ylab="Orders")
When I change
rarecurve(orders, step=1, xlab="Individuals", ylab="Orders", label=TRUE)
Nothing changes on the graph. I just want a label at the end of each plot saying what row it is from?
I've seen others who have used Vegan and gotten lables on their data, I have tried copying exactly what they have done and I still get no labels. Is there something with the data I need to change?