Skip to content

sukhbinder/JointPlotWithMatplotlib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Jointplot with Matplotlib

image

Seaborn is an excellent plotting library but unfortunately it’s not always available as a standard installation. Recently had the requirement for an Jointplot but didn’t have access to seaborn, so wrote this simple jointplot implementation with matplotlib.

usage

Import Jointplot
tips=pd.read_csv(r'tests/tips_p.csv')
data=np.c_[tips['total_bill'].values,tips['tip'].values]
jointPlot(data,kde=True)

About

An implementation of Jointplot with Matplotlib

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages