Computer Science, asked by snehasumbharwal, 7 months ago

b) Write a python program to create a bar plot of scores by group and
gender. Use multiple values on the same chart for men and women.
Sample Data:
Means (men) = (22,30,35,35.26)
Means (women) = (25,32,30,35,29)​

Answers

Answered by GhoshM
0

Answer:

b) Write a python program to create a bar plot of scores by group and

gender. Use multiple values on the same chart for men and women.

Sample Data:

Means (men) = (22,30,35,35.26)

Means (women) = (25,32,30,35,29)

Answered by tishachoudhary024
0

Answer:

import matpoltlib.pyplot as plt

MM = [22, 30, 35, 35, 26]  

MW= [25, 32, 30, 35, 29]

plt.bar(MM,MW)

plt.show()

Explanation:

Similar questions