I want to resize the plots from this code but i don't know how to. this code results plots but so tiny..
plt.style.use('ggplot')
plt.subplot(3, 2, 1)
plt.plot(raw_turen['ABJ'], color='blue')
plt.title('ABJ Turen')
plt.subplot(3, 2, 2)
plt.plot(raw_gondanglegi['ABJ'], color='green')
plt.title('ABJ Gondanglegi')
plt.subplot(3, 2, 3)
plt.plot(raw_donomulyo['ABJ'], color='black')
plt.title('ABJ Donomulyo')
plt.subplot(3, 2, 4)
plt.plot(raw_kepanjen['ABJ'], color='red')
plt.title('ABJ Kepanjen')
plt.subplot(3, 2, 5)
plt.plot(raw_bululawang['ABJ'], color='magenta')
plt.title('ABJ Bululawang')
# Improve spacing between subplots and display them
plt.tight_layout()
plt.show()
this is the result :