Unique.ID | R Documentation |
When working with a large data set of multiple stands and plots, it can be helpful to provide each individual plot a unique ID code. As an example, this ensures that when using some functions like basal area of larger trees, you don't confused plot 2 in stands 1, 2, 3.
Unique.ID(Stand, Plot)
Stand |
The unique stand ID for each stand. |
Plot |
The unique plot ID for each plot within a stand. |
This is a required function for the BA.Larger.Trees and CCF.Larger functions. This may also be helpful in your own analysis to make sorting easier.
This function returns a vector of length n with unique id numbers for every individual plot.
Ryan Smith
Other Plot Level Functions:
BA.Larger.Trees()
,
BAPH()
,
CCF.Larger()
,
CrownCompF()
,
DBHFuns()
,
HeightPredict()
,
RD()
,
SDI.Max()
,
SDI.Plot()
,
TPH()
,
TallestTrees()
Stand <- c(1,1,1,1,1,1,2,2,2,2,2,2) Plot <- c(1,2,3,4,5,6,1,2,3,4,5,6) Unique.ID(Stand, Plot)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.