There are much more information overlap in my figure, I want to make it more clear, how to modify my code?
df = pd.read_excel('biodye_24samples.xlsx', header=None)
x_coord =df.values[0, 1:]
df_name = df.values[1:, 0]
df_val = df.values[1:,1:]
fig = plt.figure()
for i in range(1, 13):
ax = fig.add_subplot(3, 4, i)
ax.plot(x_coord, df_val[2*i - 2,],'r', label='SCI')
ax.plot(x_coord, df_val[2*i - 1,],'b', label='SCE')
plt.xlabel('Wavelength(nm)', fontsize = 10)
plt.ylabel('Reflectance', fontsize = 10)
plt.legend()
plt.title(df_name[2*i - 2], fontsize = 10)
plt.show()