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

Correct documentation #352

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
12 changes: 6 additions & 6 deletions esda/moran.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class Moran:
transformation : string
weights transformation, default is row-standardized "r".
Other options include "B": binary, "D":
doubly-standardized, "U": untransformed
doubly-standardized, "O": restore original transformation
JasonSteelmanCoder marked this conversation as resolved.
Show resolved Hide resolved
(general weights), "V": variance-stabilizing.
permutations : int
number of random permutations for calculation of
Expand Down Expand Up @@ -337,7 +337,7 @@ class Moran_BV: # noqa: N801
Other options include
"B": binary,
"D": doubly-standardized,
"U": untransformed (general weights),
"O": restore original transformation (general weights),
"V": variance-stabilizing.
permutations : int
number of random permutations for calculation of pseudo
Expand Down Expand Up @@ -655,7 +655,7 @@ class Moran_Rate(Moran): # noqa: N801
Other options include
"B": binary,
"D": doubly-standardized,
"U": untransformed (general weights),
"O": restore original transformation (general weights),
"V": variance-stabilizing.
two_tailed : boolean
If True (default), analytical p-values for Moran's I are
Expand Down Expand Up @@ -889,7 +889,7 @@ class Moran_Local: # noqa: N801
Other options include
"B": binary,
"D": doubly-standardized,
"U": untransformed (general weights),
"O": restore original transformation (general weights),
"V": variance-stabilizing.
permutations : int
number of random permutations for calculation of pseudo
Expand Down Expand Up @@ -1263,7 +1263,7 @@ class Moran_Local_BV: # noqa: N801
Other options include
"B": binary,
"D": doubly-standardized,
"U": untransformed (general weights),
"O": restore original transformation (general weights),
"V": variance-stabilizing.
permutations : int
number of random permutations for calculation of pseudo
Expand Down Expand Up @@ -1533,7 +1533,7 @@ class Moran_Local_Rate(Moran_Local): # noqa: N801
Other options include
"B": binary,
"D": doubly-standardized,
"U": untransformed (general weights),
"O": restore original transformation (general weights),
"V": variance-stabilizing.
permutations : int
number of random permutations for calculation of pseudo
Expand Down