For the complete documentation index, see llms.txt. This page is also available as Markdown.

Multivariate Local Join Count

Multivariate or colocation local join count (2019) works when two or more events happen in the same location (e.g., a city block that is both low-density and commercial, or a parcel that can be single family/multifamily, or owned/rented). It can be used to identify positive spatial autocorrelation. For more information, please read http://geodacenter.github.io/workbook/6a_local_auto/lab6a.html

localMultiJoinCount()

function localMultiJoinCount(
    WeightResult w,
    Array vals,
    Number permutations, 
    String permutation_method,
    NUmber significance_cutoff, 
    Number seed)

Arguments

Name

Type

Description

w

WeightResult

the WeightResult object created from weights function

vals

Array

an array of numeric columns that contains the binary values (e.g. 0 and 1) for LISA statistics

permutations

Number

the number of permutations for the LISA computation. Default: 999.

permutation_method

String

the permutation method used for the LISA computation. Options are 'complete', 'lookup'. Default: 'lookup'.

significance_cutoff

Number

the cutoff value for significance p-values to filter not-significant clusters. Default: 0.05.

seed

Number

the seed for random number generator used in LISA statistics. Default: 123456789.

Return

Type

Description

LisaResult

The LisaResult object contains the results of LISA computation: pvalues, clusters, lisa_values, neighbors, labels, colors

Try it yourself in the playground (jsgeoda + deck.gl):

Last updated