comat (version 0.9.5)

get_cove: 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")

Value

A co-occurrence vector

Arguments

x

A matrix - an output of the get_coma() function

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".

Examples

Run this code
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

Run the code above in your browser using DataLab