How can I change the colors of the bars in the bar plot?
species = ("Adelie", "Chinstrap", "Gentoo")
penguin_means = {
'Bill Depth': (18.35, 18.43, 14.98),
'Bill Length': (38.79, 48.83, 47.50),
'Flipper Length': (189.95, 195.82, 217.19),
}
x = np.arange(len(species)) # the label locations
width = 0.25 # the width of the bars
multiplier = 0
fig, ax = plt.subplots(layout='constrained')
for attribute, measurement in penguin_means.items():
offset = width * multiplier
rects = ax.bar(x + offset, measurement, width, label=attribute)
ax.bar_label(rects, padding=3)
multiplier += 1
ax.set_ylabel('Length (mm)')
ax.set_title('Penguin attributes by species')
ax.set_xticks(x + width, species)
ax.legend(loc='upper left', ncols=3)
ax.set_ylim(0, 250)
plt.show()`
Expected:
I want to change the bar colors to : color = ['lightsalmon', 'lightseagreen', 'darkseagreen', 'mediumorchid']
zip
to combinecolors
topenguin_means.items()
and iterate through them, which allows for use of thecolor
parameter inax.bar
.pandas
to create apands.DataFrame
andpandas.DataFrame.plot
to more easily create grouped bars.df