Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: add description for z attr in Moran_Local #354

Merged
merged 2 commits into from
Dec 16, 2024
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
mrariden marked this conversation as resolved.
Show resolved Hide resolved
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