An open API service indexing awesome lists of open source software.

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.

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.