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

implement .plot(), .scatterplot() and .lisa_map() methods for Moran_Local object #19

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
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: 10 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ python:
- "3.6"

env:
- PYSAL_PLUS=false
- PYSAL_PLUS=true
- PYSAL_PLUS=false MPLBACKEND='pdf'
- PYSAL_PLUS=true MPLBACKEND='pdf'

before_install:
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
Expand All @@ -26,6 +26,14 @@ install:
- conda install --yes --file requirements.txt;
- pip install libpysal
- if [[ PYSAL_PLUS ]]; then conda install --yes numba; fi
- conda install matplotlib --yes
# we need descartes for `geopandas` dependency
- conda install descartes --yes
- conda install mapclassify --yes
# We need geopandas master, the legend_kwds is not in 0.3.0
- pip install https://github.com/geopandas/geopandas/archive/master.zip
# We need splot master, since splot is not released yet
- pip install -v https://github.com/pysal/splot/archive/master.zip

script:
- pwd
Expand Down
Loading