https://github.com/mastersign/mastersign-datascience
High level helpers for data science in Python with Pandas.
https://github.com/mastersign/mastersign-datascience
data-science data-visualization database-access pandas python
Last synced: 6 months ago
JSON representation
High level helpers for data science in Python with Pandas.
- Host: GitHub
- URL: https://github.com/mastersign/mastersign-datascience
- Owner: mastersign
- License: other
- Created: 2019-02-28T14:59:04.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-06T10:10:54.000Z (over 1 year ago)
- Last Synced: 2025-06-21T21:18:51.089Z (7 months ago)
- Topics: data-science, data-visualization, database-access, pandas, python
- Language: Jupyter Notebook
- Homepage: https://mastersign.github.io/mastersign-datascience
- Size: 13 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
#######################
Mastersign Data Science
#######################
High level helpers for data science in Python with Pandas.
************
Installation
************
::
pip install mastersign-datascience
or
::
python ./setup.py install
-----------------------------
Plotting on Cartographic Maps
-----------------------------
You can use the library without further manual steps;
but if you want to use plotting functions which draw on a cartographic maps,
like ``scatter_map()``, you must install *Basemap* yourself.
PyPI does not host a version of *Basemap* which can easily be used as a dependency.
Therefore *Basemap* is not listed as a dependency in this library.
On Windows, you may install the Wheel
from https://www.lfd.uci.edu/~gohlke/pythonlibs/#basemap .
Download the e.g. ``basemap-1.2.0-cp36-cp36m-win_amd64.whl`` and then install it
with ``pip``:
::
pip install .\basemap-1.2.0-cp36-cp36m-win_amd64.whl
On Linux you may install *Basemap* with your distributions package manager.
E.g. on Ubuntu you can use ``apt``:
::
sudo apt install python3-mpltoolkits.basemap
*************
Documentation
*************
https://mastersign.github.io/mastersign-datascience
*************
Demonstration
*************
Take a look at the Jupyter Notebooks ``demo-*.ipynb`` for demonstration.