-
Notifications
You must be signed in to change notification settings - Fork 55
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
implement .plot()
, .scatterplot()
and .lisa_map()
methods for Moran_Local
object
#19
base: main
Are you sure you want to change the base?
Conversation
Travis depends on this pull request to be able to install The last error in Travis seems unrelated: |
@slumnitz I'm hitting an error trying to test this off of the branch
Is resulting in:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comments above.
|
@slumnitz sorry for the delay in reviewing. I believe the issue here is due to the way the testing methods for Can you try changing |
@ljwolf I tried adapt your suggestion. It still failed for me setting |
you're right. Note that a seed is not set in this testing class's We need to set the seed and ensure that the resulting on my box I get anything from .01 to .011. |
I fixed the Once this is merged Travis will hopefully pass. |
Another issue with dependencies:
This should be installed when |
.plot()
, .scatterplot()
and .LISA_map()
methods for Moran_Local
object.plot()
, .scatterplot()
and .lisa_map()
methods for Moran_Local
object
…ran_Local` object therefore call `splot` functonality
fix parameters in `splot.esda.lisa_cluster()` called in `moran.py`
…r.zip` to `.travis.yml` for testing
change `self = moran.Moran_Local(self.y, self.w)` to `mloc = moran.Moran_Local(self.y, self.w)`
remove `self` inside test funciton for plots Please enter the commit message for your changes. Lines starting
… rtol=1e-7, atol=0)`
also change version number to fix a warning in the TravisCI log instal matplotlib with conda
add examples and documentation
…ndency note: this will only work once the PySAL refactore is released
@slumnitz can we close this? |
@sjsrey this PR was opened to call splot plotting methods from esda. I recall it was not merged for a while, because of open PRs in splot. If it is still of interest to call splot methods with |
@slumnitz I left notes for you regarding the |
implement visualisation methods for
esda.moran.Moran_Local
called fromsplot
write documentation and tests for methods