I have a dictionary with 17 keys, all with equal number of records. I want to make 17 subplots with each subplot showing each key's graph. When I use my code, I get all 17 lines(line chart) in all subplots.
My Code:
for j in range(1,18):
plt.subplot(4,5,j)
for index, (key, value) in enumerate(degree_gender_ratios.items()):
plt.plot(value)
Can someone help me with this?