Answers for "python how to make multiple box plots"

0

python how to make multiple box plots

my_dict = {'ABC': [34.54, 34.345, 34.761], 'DEF': [34.541, 34.748, 34.482]}

fig, ax = plt.subplots()
ax.boxplot(my_dict.values())
ax.set_xticklabels(my_dict.keys())
Posted by: Guest on March-04-2020

Code answers related to "python how to make multiple box plots"

Python Answers by Framework

Browse Popular Code Answers by Language