Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions esda/moran.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ class Moran:
original variable
w : W | Graph
original w object
z : array
zero-mean, unit standard deviation normalized y
permutations : int
number of permutations
I : float
Expand Down Expand Up @@ -670,6 +672,8 @@ class Moran_Rate(Moran): # noqa: N801
rate variable computed from parameters e and b
if adjusted is True, y is standardized rates
otherwise, y is raw rates
z : array
zero-mean, unit standard deviation normalized y
w : W | Graph
original w object
permutations : int
Expand Down Expand Up @@ -923,6 +927,8 @@ class Moran_Local: # noqa: N801
original variable
w : W | Graph
original w object
z : array
zero-mean, unit standard deviation normalized y
permutations : int
number of random permutations for calculation of pseudo p_values
Is : array
Expand Down Expand Up @@ -1564,6 +1570,8 @@ class Moran_Local_Rate(Moran_Local): # noqa: N801
rate variables computed from parameters e and b
if adjusted is True, y is standardized rates
otherwise, y is raw rates
z : array
zero-mean, unit standard deviation normalized y
w : W | Graph
original w object
permutations : int
Expand Down
Loading