Metadata-Version: 2.4
Name: matviz
Version: 0.2.2
Summary: matviz: matrix data visualization
Author-email: Jonathan Lansey <jonathan@lansey.net>
Maintainer-email: Jonathan Lansey <jonathan@lansey.net>
License: BSD-3-Clause
Project-URL: Homepage, https://github.com/JLansey/matviz
Project-URL: Repository, https://github.com/JLansey/matviz
Project-URL: Documentation, https://github.com/JLansey/matviz
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: License :: OSI Approved :: BSD License
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.20.0
Requires-Dist: scipy>=1.7.0
Requires-Dist: pandas>=1.3.0
Requires-Dist: matplotlib>=3.4.0
Requires-Dist: seaborn>=0.11.0
Requires-Dist: scikit-learn>=0.24.0
Requires-Dist: python-dateutil>=2.8.0
Requires-Dist: pyyaml>=5.1
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
Requires-Dist: flake8>=5.0.0; extra == "dev"
Requires-Dist: nbval>=0.10.0; extra == "dev"
Requires-Dist: pytest-mpl>=0.16.0; extra == "dev"
Provides-Extra: docs
Requires-Dist: sphinx>=5.0.0; extra == "docs"
Requires-Dist: sphinx-rtd-theme>=1.0.0; extra == "docs"
Provides-Extra: all
Requires-Dist: matviz[dev,docs]; extra == "all"
Dynamic: license-file

# viz
* `helpers_graphing` is a set of helpful import statements that converts the environment to being similar to a Matlab coding environment. It also imports a few custom scripts from:
* `viz` includes small helpful scripts to change figure sizes and a few longer scripts like `streamgraph` and `logfit`
* `etl` has a few small scripts to help with data formats and time zones and fancy function for smoothing data `nan_smooth`
* `histogram_utils` includes awesome functions for making nice 1 and 2d histograms

To make use of everything at once run:
```
from helpers_graphing import *
```
