matplotlib a pyhton package for 2D graphics provides a very quick way to visualize data from Python and publication-quality figures in many formats.
It allows interactive matplotlib sessions that have Matlab/Mathematica-like functionality.
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..
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",
)
Bokeh isa library that provides a quick and easy interactive visualization of plots, dashboards and data applications
usage of Bokeh: