BAPH | R Documentation |
This function calculates the Basal Area Per Hectare for each plot within your data set.
BAPH(Stand, Plot, BA, EXPF)
Stand |
The unique Stand ID for each Plot. |
Plot |
The unique Plot ID for each Plot. |
BA |
Diameter at breast height in cm. |
EXPF |
Expansion factor for each tree. |
This function requires that you calculate the Basal Area and the Expansion Factor for each tree in your inventory. See the EXP.F and BA functions if you need to do this.
Basal Area Per Hectare is a dependency for a number of other functions that may be useful in your analysis, so using a standard naming convention, while always good practice, will help when applying to additional functions. (ex: BAPH, BA.PH, BasalAreaPerHectare, BAPerHectare).
Returns a vector of the length N with the basal area in sq meters per hectare for each plot.
BA
EXP.F
Other Basal Area Functions:
BA.Larger.Trees()
,
BA()
Other Plot Level Functions:
BA.Larger.Trees()
,
CCF.Larger()
,
CrownCompF()
,
DBHFuns()
,
HeightPredict()
,
RD()
,
SDI.Max()
,
SDI.Plot()
,
TPH()
,
TallestTrees()
,
Unique.ID()
Stand <- c(1,1,1,1) Plot <- c(1,1,1,1) BA <- c(.01, .12, .06, .04) EXPF <- c(16, 16, 16, 16) BAPH(Stand, Plot, BA, EXPF)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.