Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 1.19 KB

README.md

File metadata and controls

48 lines (33 loc) · 1.19 KB

Pretty Analytic Plots

This project simplifies the construction of charts typical of an analyst.

Installing

Install package:

python3 project_path/setup.py install

Dependencies will be installed along with the package.

Some pretty plots

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)

Plot

You can find more usage examples in examples.

Built With

Authors

  • Victor Kharlamov - Developer - Xapulc

See also the list of contributors who participated in this project.

License

This project is licensed under the BSD License - see the LICENSE.md file for details

Acknowledgments

  • Thanks to seaborn for architectural solutions used in this project.