https://github.com/danielc92/pandas_to_pygal
Conversion script for pandas dataframes to pygal objects. Can be used to display charts in python web development projects or generic reporting.
https://github.com/danielc92/pandas_to_pygal
Last synced: about 2 months ago
JSON representation
Conversion script for pandas dataframes to pygal objects. Can be used to display charts in python web development projects or generic reporting.
- Host: GitHub
- URL: https://github.com/danielc92/pandas_to_pygal
- Owner: danielc92
- Created: 2018-11-01T02:33:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-12T00:06:10.000Z (over 7 years ago)
- Last Synced: 2025-08-27T08:38:41.895Z (10 months ago)
- Language: Jupyter Notebook
- Size: 25.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pandas to Pygal script
`pygal` is a svg charting library for python
documentation here: http://pygal.org/en/stable/
`pandas` allows for handling and manipulation of data structures with ease
documentation here: https://pandas.pydata.org/
Transferring data into formats suitable for pygal can be timely, having an intermediate library to convert pandas dataframes into pygal charts saves a lot of time.
# Setup
Run `pip install pandas` and `pip install pygal` and place this script in a python path
# Usage
- Look into examples.ipynb for usage examples for this script.