Skip to content

Commit

Permalink
expose
Browse files Browse the repository at this point in the history
  • Loading branch information
martinfleis committed Jan 18, 2025
1 parent 47022e5 commit 634e5c5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ Moran Statistics
esda.Moran_Local_BV
esda.Moran_Rate
esda.Moran_Local_Rate
esda.plot_moran_facet


Shape Statistics
Expand Down
1 change: 1 addition & 0 deletions esda/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
Moran_Local_BV,
Moran_Local_Rate,
Moran_Rate,
plot_moran_facet,
)
from .silhouettes import boundary_silhouette, path_silhouette # noqa F401
from .smaup import Smaup # noqa F401
Expand Down
3 changes: 2 additions & 1 deletion esda/moran.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"Levi John Wolf <[email protected]>"
)

from warnings import simplefilter, warn
from warnings import simplefilter

import numpy as np
import pandas as pd
Expand All @@ -32,6 +32,7 @@
"Moran_Local_BV",
"Moran_Rate",
"Moran_Local_Rate",
"plot_moran_facet",
]

PERMUTATIONS = 999
Expand Down

0 comments on commit 634e5c5

Please sign in to comment.