import matplotlib.pyplot as plt
plt.figure(1, figsize=(8, 7))
ax1=plt.subplot(231)
ax1.plot(sanet_x, sanet_y_data)
ax1.set_title('a')
ax2=plt.subplot(232)
ax2.plot(canet_x, canet_y_data)
ax2.set_title('b')
ax3=plt.subplot(233)
ax3.plot(shuffle_x, shuffle_y_data)
ax3.set_title('c')
ax4=plt.subplot(234)
ax4.plot(VNext_x, VNext_y_data)
ax4.set_title('d')
ax5=plt.subplot(235)
ax5.plot(V3_Large_x, V3_Large_y_data)
ax5.set_title('e')
ax6=plt.subplot(236)
ax6.plot(GRNN2_x, GRNN2_y_data)
ax6.set_title('f')
plt.show()