Skip to content

TullyOLeary/ChartSmith

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ChartSmith

ChartSmith is a Python package built on top of Matplotlib and Seaborn that creates well-formatted, well-labeled visualizations.

Installation

pip install ChartSmith

Usage

Here's how you can use the ChartSmith package:

from ChartSmith import ChartSmith

# Create an instance of the ChartSmith class
viz = ChartSmith()

# Line plot
viz.line_plot(x=[1, 2, 3, 4], y=[10, 20, 25, 30], title='Line Plot', xlabel='X Axis', ylabel='Y Axis')

# Bar plot
viz.bar_plot(x=['A', 'B', 'C', 'D'], y=[10, 20, 25, 30], title='Bar Plot', xlabel='Categories', ylabel='Values')

# Scatter plot
viz.scatter_plot(x=[1, 2, 3, 4], y=[10, 20, 25, 30], title='Scatter Plot', xlabel='X Axis', ylabel='Y Axis')

License

This project is licensed under the MIT License - see the LICENSE.txt file for details.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages