在python matplotlib 3d中绘制比默认轴更多的轴

时间:2017-04-27 17:35:40

标签: python matplotlib

我想在{-xlim,-ylim}的3D绘图中有一个黑色的垂直轴,而不仅仅是{+ xlim,+ ylim}。有没有办法打开它(而不只是在那里画一条额外的线?)

from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt
import numpy as np

fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
X, Y, Z = axes3d.get_test_data(0.05)
ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10)
ax.w_xaxis.set_pane_color((1.0, 1.0, 1.0, 1.0))
ax.w_yaxis.set_pane_color((1.0, 1.0, 1.0, 1.0))
ax.w_zaxis.set_pane_color((1.0, 1.0, 1.0, 1.0))
ax.xaxis.pane.set_edgecolor('black')
ax.yaxis.pane.set_edgecolor('black')
ax.zaxis.pane.set_edgecolor('black')

plt.show()

我喜欢突出显示在这里的一条线 I'd like a line where the highlighting is here.

0 个答案:

没有答案