Metadata-Version: 2.1
Name: mastersign-datascience
Version: 0.1.2
Summary: High level helpers for data science in Python with Pandas.
Home-page: https://github.com/mastersign/mastersign-datascience.git
Author: Tobias Kiertscher
Author-email: dev@mastersign.de
Maintainer: Tobias Kiertscher
Maintainer-email: dev@mastersign.de
License: BSD-3
Keywords: lib datascience
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: Pandas (>=0.23)
Requires-Dist: SQLAlchemy (>=1.0)
Requires-Dist: tabulate
Requires-Dist: matplotlib
Requires-Dist: beautifulsoup4
Requires-Dist: click (>=7.0)


#######################
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.



