comat (version 0.9.5)

get_cocove: Create a co-located co-occurrence vector (cocove)

Description

Converts a co-located co-occurrence matrix (cocoma) to a co-located co-occurrence vector (cocove)

Usage

get_cocove(x, ordered = TRUE, normalization = "none")

Value

A co-located co-occurrence vector

Arguments

x

A matrix - an output of the get_cocoma() 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")
data(raster_x_na, package = "comat")

coom = get_cocoma(raster_x, raster_x_na)
coom

coov = get_cocove(coom)
coov

Run the code above in your browser using DataLab