Tool for plotting visualizations from Pandas DataFrame
Project description
VizPack
VizPack is a Visualization package with necessary tools for plotting visualizations from Pandas DataFrame
Data Visualization
- To install the VizPack project, run this command in your terminal:
$ pip install VizPack
- Import the Visualization Class from the vizpack module, for visualizing pandas DataFrame
>>> from VizPack.vizpack import Viz_Func
- Initialize a variable to work with the Viz_Func object
>>> viz = Viz_Func()
========== Welcome to the Visualization Tool kit ==========
- Checking for Documentation
>>> help(viz)
- Examples of Valid use
Extensively Analysed here
# Labelling the plot
>>> viz.label_plot(
title ='Distribution plot of Greek Alphabet',
x = 'Count',
y ='Alphabet')
# Plotting the Bars
>>> plots = viz.plot_bar(
dataset = df,
limit = 10,
column ='C',
horizontal = True,
figsize = (16,8),
color = 'maroon')
#Anotating the Bars
>>> viz.annot_bar(plots, horizontal = True)
viz.plot_donut(dataset = df,
limit = 7,
column = 'C',
title = 'Plot: Distribution of Greek Alphabets',
shadow = False,
colors = False,
explode = False, background = 'white'
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
VizPack-1.0.2.tar.gz
(4.3 kB
view hashes)