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

ModuleNotFoundError-Binder Interactive Notebooks - library dependencies #58

Open
thedatalass opened this issue Jul 13, 2019 · 0 comments

Comments

@thedatalass
Copy link

thedatalass commented Jul 13, 2019

Rank Based Methods Jupyter Notebook

Directional Analysis of Dynamic LISAs

Full Rank Markov and Geographic Rank Markov

Exploratory Analysis of Spatial Data: Spatial Autocorrelation

Distance Based Statistical Method for Planar Point Patterns

Minimum Bounding Circle

Quadrat Based Statistical Method for Planar Point Patterns

Point Pattern Windows

Facility Location

Snapping point to segments

Network Usage

Map Classify South

Moran BV Test

ESDA Moran Matrix

splot.libpysal: assessing neigbors & spatial weights

Exploratory Analysis of Spatial Data: Visualizing Spatial Autocorrelation with splot and esda

Space-time visualisations giddy

Mapping with splot and PySAL

Spatially Varying Coefficients

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-3-5fcf88860e5d> in <module>
      1 import pandas as pd
----> 2 import libpysal
      3 import geopandas as gpd
      4 import numpy as np
      5 

ModuleNotFoundError: No module named 'libpysal'

Measures of Income Mobility

Spatially Explicit Markov Methods

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-1-d3b35564319e> in <module>
----> 1 from giddy import markov,mobility
      2 get_ipython().run_line_magic('pinfo', 'mobility.markov_mobility')

ModuleNotFoundError: No module named 'giddy'

Centrography of Point Patterns

Point Processes

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-1-2d32b704dc0b> in <module>
      1 import numpy as np
----> 2 from pointpats import PointPattern
      3 get_ipython().run_line_magic('matplotlib', 'inline')
      4 import matplotlib.pyplot as plt
      5 points = [[66.22, 32.54], [22.52, 22.39], [31.01, 81.21],

ModuleNotFoundError: No module named 'pointpats'

Spatial Graphs, Networks, Topology, & Inference

ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-3-7d57733dc214> in <module>
----> 1 import spaghetti as spgh
      2 from libpysal import examples
      3 import geopandas as gpd
      4 import matplotlib.pyplot as plt
      5 import matplotlib.lines as mlines

ModuleNotFoundError: No module named 'spaghetti'

Using the Sampler

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-1-5f54e2b05722> in <module>
----> 1 import spvcm as spvcm #package API
      2 spvcm.both_levels.Generic # abstract customizable class, ignores rho/lambda, equivalent to MVCM
      3 spvcm.both_levels.MVCM # no spatial effect
      4 spvcm.both_levels.SESE #  both spatial error (SE)
      5 spvcm.both_levels.SESMA # response-level SE, region-level spatial moving average

ModuleNotFoundError: No module named 'spvcm'

Sparse vs. Dense Grav

Test Grav

Sparse_Grav

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-1-48f4e22a45ce> in <module>
      1 import numpy as np
      2 import pandas as pd
----> 3 from gravity import Gravity, Production, Attraction, Doubly, BaseGravity
      4 from entropy import Unconstrained, ProductionConstrained, AttractionConstrained, DoublyConstrained
      5 import statsmodels.formula.api as smf

ModuleNotFoundError: No module named 'gravity'

Example_NYCBikes_AllFeatures

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-1-3bf3e2d02e84> in <module>
----> 1 from pysal.contrib.spint.gravity import  BaseGravity, Gravity, Production, Attraction, Doubly
      2 from pysal.contrib.spint.dispersion import phi_disp
      3 from pysal.contrib.spint.vec_SA import VecMoran
      4 import pysal as ps
      5 import pandas as pd

ModuleNotFoundError: No module named 'pysal.contrib'

New Distance Band

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-1-50084c00507b> in <module>
      2 from scipy.spatial import distance
      3 import scipy.spatial as spatial
----> 4 from pysal.weights import W
      5 from pysal.weights.util import isKDTree
      6 from pysal.weights import Distance as Distance

ModuleNotFoundError: No module named 'pysal.weights'

GLM Speed

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-3-5e087b8bf1ca> in <module>
      1 import numpy as np
      2 import pandas as pd
----> 3 from spint.gravity import Gravity, Production, Attraction, Doubly, BaseGravity
      4 #from entropy import Unconstrained, ProductionConstrained, AttractionConstrained, DoublyConstrained
      5 import statsmodels.formula.api as smf

ModuleNotFoundError: No module named 'spint'

Sparse Categorical

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-1-d9a4f3428b8b> in <module>
      1 import numpy as np
      2 from scipy import sparse as sp
----> 3 from statsmodels.tools.tools import categorical
      4 from datetime import datetime as dt

ModuleNotFoundError: No module named 'statsmodels'

ODW Example

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-1-3d6a9795512b> in <module>
      1 import sys
      2 sys.path.append('/Users/toshan/dev/pysal/pysal/weights')
----> 3 from spintW import ODW
      4 import pysal as ps

ModuleNotFoundError: No module named 'spintW'

Autograd Test

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-1-18bc241f5db4> in <module>
      1 import pandas as pd
      2 import scipy.optimize as sc
----> 3 import autograd.numpy as np
      4 import autograd
      5 from autograd.convenience_wrappers import multigrad

ModuleNotFoundError: No module named 'autograd'

Poisson GLM

Gaussian_GLM

Binomial_GLM

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-1-1c4fb77a18fe> in <module>
----> 1 from spglm.glm import GLM
      2 from spglm.family import Poisson
      3 import libpysal.api as ps
      4 import numpy as np

ModuleNotFoundError: No module named 'spglm'
@thedatalass thedatalass changed the title Binder for Rank_based_Methods Binder Interactive Jupyter Notebooks - LibPySal issues Jul 13, 2019
@thedatalass thedatalass changed the title Binder Interactive Jupyter Notebooks - LibPySal issues Binder Giddy Interactive Jupyter Notebooks - LibPySal issues Jul 13, 2019
@thedatalass thedatalass changed the title Binder Giddy Interactive Jupyter Notebooks - LibPySal issues Binder Interactive Jupyter Notebooks - LibPySal and Giddy issues Jul 13, 2019
@thedatalass thedatalass changed the title Binder Interactive Jupyter Notebooks - LibPySal and Giddy issues Binder Interactive Jupyter Notebooks - ModuleError library dependencies Jul 13, 2019
@thedatalass thedatalass changed the title Binder Interactive Jupyter Notebooks - ModuleError library dependencies ModuleError-Binder Interactive Notebooks - library dependencies Jul 13, 2019
@thedatalass thedatalass changed the title ModuleError-Binder Interactive Notebooks - library dependencies ModuleNotFoundError-Binder Interactive Notebooks - library dependencies Jul 13, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant