View source: R/fe_ccircle_spatial_methods.R
plot.fe_ccircle_spatial | R Documentation |
Plot an fe_ccircle_spatial Object
## S3 method for class 'fe_ccircle_spatial'
plot(x, tree_filter = TRUE, dbh_scale = 1, show_labels = FALSE, ...)
x |
An |
tree_filter |
A |
dbh_scale |
Scaling factor for plotting tree dbh in order to allow oversized representations. Defaults to 1 (correct scaling) |
show_labels |
Logical value. If TRUE, labels for species, dbh, R and angle are displayed. |
... |
Additional arguments, not used in |
A map (ggplot2) of the plot layout including the trees with coordinates
opt_old <- getOption("fe_spec_lang") # store user's current setting
options(fe_spec_lang = "eng") # choose Englisch species name display
spruce_pine_ccircle_spatial |> plot()
spruce_pine_ccircle_spatial |> plot(dbh_scale = 4)
spruce_pine_ccircle_spatial |>
plot(
dbh_scale = 4,
tree_filter = species_id == fe_species_tum_wwk_long(30) & dbh_cm > 35
)
options(fe_spec_lang = opt_old)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.