plot_taper: Plot taper curve

View source: R/plot_taper.R

plot_taperR Documentation

Plot taper curve

Description

Plots the taper curve

Usage

plot_taper(dbh, h_top, sp = "spruce", with_bark = TRUE)

Arguments

dbh

diameter at breast height, 1.3 m above ground (cm).

h_top

tree height above ground (m).

sp

species

with_bark

plot taper curve with (TRUE, default) or without bark (FALSE).

Examples


#one tree
plot_taper(33,30)

# multiple trees
plot_taper(dbh=c(33,20,18),h_top=c(30,25,20),sp=c(1,1,3))

# different tree species with same dbh and height
plot_taper(dbh=rep(25,3),h_top=rep(27,3),sp=1:3)

#one tree with and without bark
plot_taper(dbh=rep(25,2),h_top=rep(27,2),sp=1,with_bark=c(TRUE,FALSE))

JohannesRahlf/taperNO documentation built on Feb. 17, 2025, 8:02 p.m.