Visualizing Categorical Data
Introduction to categorical plots using seaborn
Categorical plot
import seaborn as sns
import matplotlib.pyplot as plt
sns.catplot(...)
plt.show()
The catplot function
Parameters
x: name of the variable in data.
y: name of the variable in data.
...
blog.amalhanaja.dev3 min read