Steven
Steven
https://textblob.readthedocs.io/en/dev/api_reference.html#textblob.classifiers.PositiveNaiveBayesClassifier  I believe this should be `from textblob.classifiers import PositiveNaiveBayesClassifier`
`'0.15.3'` ```python from textblob import TextBlob text = 'Four years ago, we started four projects. We like them.' blob = TextBlob(text) blob.correct() ``` ``` TextBlob("Your years ago, we started four...
I'm so glad to see a package that makes plotting geo heatmap this kind of easy and beautiful. After reading the API and I realize that the heatmaps produced by...
The outline under explorer just lists all the variables. I believe it would be more helpful if a long file could be outlined based on cells. For example, if you...
The [function](https://treelib.readthedocs.io/en/latest/treelib.html#treelib.tree.Tree.paths_to_leaves) of `paths_to_leaves` returns the following list ``` [['harry', 'jane', 'diane', 'mary'], ['harry', 'jane', 'mark'], ['harry', 'jane', 'diane', 'george', 'jill'], ['harry', 'bill']] ``` But what if I have such...
patsy: '0.5.1' https://github.com/statsmodels/statsmodels/issues/5552 > `SM: 0.9.0` > For categorical endog variable in logistic regression, I still have to gerneate a dummay variable for it like the following. > > ```python...
`geopandas: '0.5.0'` I had this projection issue as well before: https://stackoverflow.com/questions/56806907/gis-shapefile-converted-to-geojson-has-unexpected-coordinate-format As GeoJSON only supports WGS84. does it make more sense to automatically reproject the `GeoDataFrame` being saved as a...
- [x ] I have checked that this issue has not already been reported. - [ x] I have confirmed this bug exists on the latest version of geopandas. -...
Hi, buddy. It seems like the word connotation (e.g., derogatory) is missing. ```python import requests url = 'https://googledictionaryapi.eu-gb.mybluemix.net/' r = requests.get(url, params=dict(define='upstart')) r.json() ``` ``` [{'word': 'upstart', 'phonetic': '/ˈʌpstɑːt/', 'meaning':...
Is it possible to add some examples of how to use the package if users load data from a Geopandas `geodataframe`? The [example](https://mgwr.readthedocs.io/en/latest/generated/mgwr.gwr.GWR.html#mgwr.gwr.GWR) provided here has multiple reshape using `numpy`...