Skip to content

geodalib / lisa/src / bivariateLocalMoran

Function: bivariateLocalMoran()

bivariateLocalMoran(props): Promise<LocalMoranResult>

Defined in: lisa/src/sa/local-moran.ts:160

Calculates bivariate Local Moran's I statistics to measure spatial correlation between two variables

Example

ts
import { bivariateLocalMoran } from '@geoda/lisa';

const data1 = [1, 2, 3, 4, 5];
const data2 = [1, 2, 3, 4, 5];
const neighbors = [[1], [0, 2], [1, 3], [2, 4], [3]];

const result = await bivariateLocalMoran({
  data1,
  data2,
  neighbors,
});

console.log(result);

Parameters

props

BivariateLocalMoranProps

Configuration object for bivariate Local Moran's I

Returns

Promise<LocalMoranResult>

Promise resolving to Local Moran statistics and cluster assignments