Displaying 1 result from an estimated 1 matches for "simp_seas".
2005 Nov 21
1
Plotting one or more series on the same graphs
...1, axes=FALSE)
legend("topright", c("Species captured"), col = c(1), lty=c(1))
axis(1, 1:4, c("autumn", "spring", "summer", "winter") )
axis(2, 1:11)
and it seems to work, but when I have decimal value on the y-axis, the
script
plot(k$simp_seas, ylim=c(min(k), max(k)), type="l",main="Index trend",
xlab="Season", ylab="Index value", axes=FALSE)
points(k$shan_seas, col="red", type="l")
leg.txt=c("Simpson's index", "Shannon's index")
legend("topleft...