get_cove {comat} | R Documentation |
Create a co-occurrence vector (cove)
Description
Converts a co-occurrence matrix (coma) to a co-occurrence vector (cove)
Usage
get_cove(x, ordered = TRUE, normalization = "none")
Arguments
x |
A matrix - an output of the |
ordered |
The type of pairs considered. Either "ordered" (TRUE) or "unordered" (FALSE). The default is TRUE. |
normalization |
Should the output vector be normalized? Either "none" or "pdf". The "pdf" option normalizes a vector to sum to one. The default is "none". |
Value
A co-occurrence vector
Examples
library(comat)
data(raster_x, package = "comat")
com = get_coma(raster_x)
com
cov = get_cove(com)
cov
cov = get_cove(com, normalization = "pdf")
cov
[Package comat version 0.9.5 Index]