Description Usage Arguments Value Examples
View source: R/hypervolume_overlap_statistics.R
Calculates overlap metrics for two hypervolumes
1 | hypervolume_overlap_statistics(hvlist)
|
hvlist |
A set of hypervolumes calculated from |
A set of multiple metrics
|
Jaccard similarity (volume of intersection of 1 and 2 divided by volume of union of 1 and 2) |
|
Sorensen similarity (twice the volume of intersection of 1 and 2 divided by volume of 1 plus volume of 2) |
|
Unique fraction 1 (volume of unique component of 1 divided by volume of 1)) |
|
Unique fraction 2 (volume of unique component of 2 divided by volume of 2)) |
1 2 3 4 5 6 7 8 9 | ## Not run:
data(iris)
hv1 = hypervolume_gaussian(subset(iris, Species=="virginica")[,1:3])
hv2 = hypervolume_gaussian(subset(iris, Species=="versicolor")[,1:3])
hv_set <- hypervolume_set(hv1, hv2, check.memory=FALSE)
hypervolume_overlap_statistics(hv_set)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.