So i have the current result of a graph i built
As you can see the multiple plots, are a little to bunched up together and i would like to separate them, would appreciate some help on the how? I tried using ylim method but didnt quite aide me they are still too bunched together.
Source code
for k,i in clean_font_data.to_dict().items():
plt.plot(list(i.keys()),list(i.values()), label = k[1],marker='o')
plt.legend(title="Legenda",fontsize=7)
plt.title('Conversão Diaria')
plt.xlabel('Datas',fontsize = 12)
plt.ylabel('Conversão',fontsize = 12)
plt.grid(True)
plt.show()
Sample of a plots data:
attendance bot
['2022-06-01', '2022-06-02', '2022-06-03', '2022-06-04', '2022-06-05', '2022-06-06']
[15.9, 17.99, 17.24, 12.75, 22.89, 24.69]