vario_uni: Computes univariate variograms for evey column of input...

View source: R/vario.R

vario_uniR Documentation

Computes univariate variograms for evey column of input matrix in addition to the multivariate variogram

Description

Computes univariate variograms for evey column of input matrix in addition to the multivariate variogram

Usage

vario_uni(x, bisect = FALSE, ...)

Arguments

x

site x sp matrix

bisect

if the bisection style vairogram should be computed

...

arguments supplied to the function vario() Developer note speed gains would be significant if partitioning of computation between species was carried out within the vario function after computing the distance matrix because that is a time intensive step

Examples

x = matrix(runif(100), ncol=10, nrow=10)
coord = cbind(1:10, 1)
vario_uni(x, coord=coord) 
# alternatively call from vario() 
vario(x, coord, univariate=T)

mcglinnlab/vario documentation built on Feb. 22, 2023, 1:49 p.m.