Description Usage Arguments Details Value Examples
Map geographic plot locations, colored by value.
1 |
x |
|
xvar |
name of variable in |
log |
logical, use |
col |
a vector of colors. If missing (default) then colors
follow |
xlab, ylab |
optional axis labels. |
... |
further arguments passed to |
Color values are relativized for each graphical image; plotting absolute values (when these differ among several plots) may require manually feeding a color vector in the proper order.
Plots to device.
1 2 3 4 5 6 7 8 9 10 | data(est)
x <- calc_biomass(est)
s <- summary_plot(x)
s$lat <- x$lat[match(s$plot, x$plot)] # match lat/lon to s
s$lon <- x$lon[match(s$plot, x$plot)] # match lat/lon to s
par(mfrow=c(2,2))
plot_map(s, total_mn, main='Total biomass')
plot_map(s, moss_mn, main='Moss biomass')
plot_map(s, lich_mn, main='Lichen biomass')
plot_map(s, fgr, main='Functional grp richness')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.