plt.style.available>>['Solarize_Light2', '_classic_test_patch', 'bmh', 'classic', 'dark_background', 'fast', 'fivethirtyeight', 'ggplot', 'grayscale', 'seaborn', 'seaborn-bright', 'seaborn-colorblind', 'seaborn-dark', 'seaborn-dark-palette', 'seaborn-darkgrid', 'seaborn-deep', 'seaborn-muted', 'seaborn-notebook', 'seaborn-paper', 'seaborn-pastel', 'seaborn-poster', 'seaborn-talk', 'seaborn-ticks', 'seaborn-white', 'seaborn-whitegrid', 'tableau-colorblind10']# Let's see how many stylesprint(len(plt.style.available))>>26
barplot = plt.bar(y_pos, odds_number, color = 'darkgreen', alpha = 0.85)barplot[0].set_color('darkred')plt.xlabel('Factors', fontsize = 15, weight = 'bold')
ax = sns.barplot(y= "Deaths", x = "Causes", data = deaths_pd, palette=("Blues_d"))sns.set_context("poster")