Skip to content

haziris/haziris-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

haziris

Visualizations for Python

Installation

Binary installers for the latest released version are available at the Python package index

pip install haziris

Google Charts

The package contains a number of wrapper python modules to create Google charts in an HTML file from a pandas data frame.

An example for creating a Material bar chart:

import pandas as pd
import haziris as hz

df = pd.DataFrame([
    ['2014', 1000,  400, 200],
    ['2015', 1170,  460, 250],
    ['2016',  660, 1120, 300],
    ['2017', 1030,  540, 350]
  ],
  columns = ['Year', 'Sales', 'Expenses', 'Profit']
)

hz.google_material_bar_chart(df, "Google material bar.html", {'legned':'None'})

The examples folder, contains more such examples.

Examples

About

Visualization for Python

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published