# Evaluation for all trees
mm_forest_1_fe_stand_spatial |> stand_sums_static()
# Exclude removal trees
mm_forest_1_fe_stand_spatial |> stand_sums_static(!removal)
# Exclude removal trees and include only trees with dbh > 30 cm
mm_forest_1_fe_stand_spatial |> stand_sums_static(!removal & dbh_cm > 30)
# Exclude removal trees, use Assmann's d100 h100 for dominant height
# and diameter
mm_forest_1_fe_stand_spatial |>
stand_sums_static(!removal, hd_dom_method = "Assmann")
# Include all trees, use Assmann's d100 h100 for dominant height
# and diameter
mm_forest_1_fe_stand_spatial |>
stand_sums_static(hd_dom_method = "Assmann")
# Incomplete height information leads to missing values in all variables
# that require height as an input
demo_stand <- spruce_beech_1_fe_stand # Copy an existing fe_stand object
index <- seq(2:nrow(demo_stand$trees)) # remove every 2nd height
demo_stand$trees[index, ]$height_m <- NA
demo_stand |> stand_sums_static()
Run the code above in your browser using DataLab