plotsamp | R Documentation |
A dataset containing the number of individuals that fall withing each of 25 square sampling plots.
data("plotsamp")
A data frame with 25 observations on the following 4 variables.
Plot
plot identifier, a factor with 25 levels (e.g, 1
2
... 25
)
Count
the number of animals observed in each plot, a numeric vector
X
the X coordinate of the plot center, a numeric vector
Y
the Y coordinate of the plot center, a numeric vector
data(plotsamp)
plot(plotsamp$X,plotsamp$Y, pch="", xlim=c(0,100),ylim=c(0,100), asp=1)
abline(h=seq(0,100,20),v=seq(0,100,20))
text(plotsamp$X,plotsamp$Y,labels=plotsamp$Count, cex=2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.