pli size change

main
MajorTop 3 years ago
parent 6d184490eb
commit 390d977c4d

@ -16,7 +16,10 @@ def plotSizeHist(size_data_dict:dict):
postion = 421
for OutterKey in size_data_dict:
plt.subplot(postion)
plt.ylim(top=140)
if postion == 428:
plt.ylim(top=440)
else:
plt.ylim(top=140)
postion += 1
size = list(size_data_dict[OutterKey].values())
width=0.3
@ -32,7 +35,7 @@ def plotSizeHist(size_data_dict:dict):
plt.title(OutterKey)
plt.ylabel('MB')
figure = plt.gcf() # get current figure
figure.set_size_inches(18, 14)
figure.set_size_inches(16, 14)
plt.savefig("performancePlot/size.png")
plt.show()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 240 KiB

Loading…
Cancel
Save