bar seaborn code example
Example: how to overlap two barplots in seaborn
import matplotlib.pyplot as plt
import seaborn as sns
crashes = sns.load_dataset("car_crashes").sort_values("total", ascending=False)
txcahi = crashes[crashes['abbrev'].isin(['TX','CA','HI'])]
f, ax = plt.subplots(figsize=(10, 5))
plt.xticks(rotation=90, fontsize=10)
plt.bar(height="total", x="abbrev", data=crashes, label="Total", color="lightgray")
plt.bar(height="total", x="abbrev", data=txcahi, label="Total", color="red")
sns.despine(left=True, bottom=True)