Just wondering why the plot on the DQ mission platform has colors, but the ones generated in the interactive python shell or Jupyter don’t…
Screen Link:
My Code:
wnba = pd.read_csv('wnba.csv')
freq_distro_pos = wnba['Pos'].value_counts()
freq_distro_height = wnba['Height'].value_counts().sort_index()
from matplotlib import pyplot as plt
freq_distro_height.plot(kind='bar')
plt.show()```
What I expected to happen:

What actually happened:

<!--Enter other details below: -->