This project simplifies the construction of charts typical of an analyst.
Install package:
python3 project_path/setup.py install
Dependencies will be installed along with the package.
If you want to plot normalized bar plot, you can write
from seaborn import load_dataset
flights = load_dataset("flights", index_col=False)
bar_plot(flights, x="year", y="passengers", hue="month", norm=True)
You can find more usage examples in examples.
- Seaborn - Main mastermind
- Matplotlib - Visualization library
- Pandas - Data Analysis library
- Victor Kharlamov - Developer - Xapulc
See also the list of contributors who participated in this project.
This project is licensed under the BSD License - see the LICENSE.md file for details
- Thanks to seaborn for architectural solutions used in this project.