esda
esda copied to clipboard
adding alternative option in local_moran and moral_local_rate
These look like useful changes. Thanks.
It would be helpful to add test coverage for new/changed functionality and update the documentation to surface these changes/enhancements.
@martinfleis @sjsrey , could you please tell me how to add test coverage for local_moran and moran_local_rate, Thank you
Hey! this is looking very good, well done @tushar-corbic!
how to add test coverage
Sure! Normally, we add a method to the test class for that module. For Moran_Local
, that's in esda/tests/test_moran.py
. If you follow that pattern to ensure that the test works, and reproduces the same result every time, then that should be fine!
Hey! this is looking very good, well done @tushar-corbic!
how to add test coverage
Sure! Normally, we add a method to the test class for that module. For
Moran_Local
, that's inesda/tests/test_moran.py
. If you follow that pattern to ensure that the test works, and reproduces the same result every time, then that should be fine!
Thank you @ljwolf , I have added test coverage for local_moran. Thank you