get_wecove {comat}R Documentation

Create a weighted co-occurrence vector (wecove)

Description

Converts a weighted co-occurrence matrix (wecoma) to a weighted co-occurrence vector (wecove)

Usage

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

Arguments

x

A matrix - an output of the get_wecoma() 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".

Value

A weighted co-occurrence vector

Examples

library(comat)
data(raster_x, package = "comat")
data(raster_w, package = "comat")

wom = get_wecoma(raster_x, raster_w)
wom

wov = get_wecove(wom)
wov

[Package comat version 0.9.5 Index]