Reading-Notes

View the Project on GitHub

matplotlib Tutorial

matplotlib a pyhton package for 2D graphics provides a very quick way to visualize data from Python and publication-quality figures in many formats.

Seaborn

Matplotlib comes with a set of default settings that allow customizing all kinds of properties like controlling figure size and dpi, line width, color and style, axes, axis and grid properties, text and font properties..

More on matplotlib

Overview of seaborn plotting functions

you can plot a seaborn graph

# Import seaborn
import seaborn as sns

# Apply the default theme
sns.set_theme()

# Load an example dataset
tips = sns.load_dataset("tips")

# Create a visualization
sns.relplot(
    data=tips,
    x="total_bill", y="tip", col="time",
    hue="smoker", style="smoker", size="size",
)

seaborn tutorial

Seaborn cheat sheet

Binder - Bokeh

overview

Bokeh isa library that provides a quick and easy interactive visualization of plots, dashboards and data applications

usage of Bokeh:

More on Bokeh