José Asked: 2021-10-24 09:05:05 +0800 CST 2021-10-24 09:05:05 +0800 CST 2021-10-24 09:05:05 +0800 CST 如何在 Python 中使图形的笛卡尔平面居中? 772 我正在使用Python matplotlib库制作一些绘图,但是,笛卡尔平面不在中心,而是在左侧,如下图所示: 但是,我需要笛卡尔平面看起来像这样(代表图): 谢谢你的帮助。 python 1 Answers Voted Best Answer marmurar 2021-10-24T09:22:08+08:002021-10-24T09:22:08+08:00 你可以这样做: import numpy as np import matplotlib.pyplot as plt x = np.arange(-10., 10., 0.2) curva = [x**3-9*x for x in x] fig = plt.figure() ax = fig.add_subplot(1, 1, 1) ax.spines['left'].set_position('center') ax.spines['bottom'].set_position('center') plt.plot(x,curva) plt.show()
你可以这样做: