我有一个循环的10个图形,但问题是颜色经过固定颜色图(蓝色,绿色,红色,青色,粉红色,黄色,黑色)并在此颜色循环后重复。我如何以某种方式改变周期或添加更多颜色?
fig = plt.figure(figsize=(5,7))
ax=fig.add_subplot(2, 1, 1)
plt.title('Bending test - Normal',fontsize=18,fontweight='bold',y=1.08)
plt.ylabel('Load (N)',fontsize=12,fontweight='bold')
for i in range(a.shape[1] // 2):
Pleet = allFiles[i][-11:-4] #Just tracing my files
ax.plot(a[:, 2* i], a[:, 2 * i + 1],label='%s'%Pleet, linewidth=2)
ax.legend(loc='center left', bbox_to_anchor=(1.05, -0.1))
请有人帮忙吗?