| plot_taper | R Documentation |
Plots the taper curve
plot_taper(dbh, h_top, sp = "spruce", with_bark = TRUE)
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). |
#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))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.