x1 = [1, 2, 3, 4, 5, 6]
y1 = [6, 5, 4, 3, 2, 1]
fig = plt.figure()
ax = fig.add_subplot(211)
ax.step(x1, y1, alpha=0.8, linewidth=2, color="b", linestyle="--", label="test")
为什么 linestyle 参数不影响这个情节?以及如何让它发挥作用?文档提到“step() 的附加关键字参数与 plot() 的相同”。(文档)