-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvm_c_frac_sd.Rd
27 lines (26 loc) · 1.23 KB
/
vm_c_frac_sd.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/vm_c_frac_sd.R
\name{vm_c_frac_sd}
\alias{vm_c_frac_sd}
\title{The standard deviation of the fractal dimension index of all patches in each class(vector data)}
\usage{
vm_c_frac_sd(landscape, class_col)
}
\arguments{
\item{landscape}{the input landscape image, should in "POLYGON" or "MULTIPOLYGON" form.}
\item{class_col}{the name of the class column of the input landscape}
}
\value{
the returned calculated standard deviation of each class is in column "value",
and this function returns also some important information such as level, class number and metric name.
Moreover, the "id" column, although it is just NA here at class level. we need it because the output struture of metrics
at class level should correspond to patch level one by one, and then it is more convinient to combine metric values at different levels and compare them.
}
\description{
This function allows you to calculate the standard deviation
of fractal dimension index of all patches belonging to class i in a categorical landscape in vector data format
The index is based on the patch perimeter and the patch area and describes the patch complexity
}
\examples{
vm_c_frac_sd(vector_landscape, "class")
}