I don't know this library, but my quick analysis of the code shows that these lines are hard-coded:
ca.plot_coordinates()
calls plot.stylize_axis()
, which in turns draws these two lines whether you want them or not (L21–22):
ax.axhline(y=0, linestyle='-', linewidth=1.2, color=GRAY['dark'], alpha=0.6)
ax.axvline(x=0, linestyle='-', linewidth=1.2, color=GRAY['dark'], alpha=0.6)
Thankfully, the artists thus created should be stored in ax.lines
, so you should be able to remove the first two lines there:
del ax.lines[:2]
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…