简体   繁体   English

matplotlib:3D图中的网格

[英]matplotlib: grid in 3D plots

In matplotlib , how can I show a grid in 3D scatter plot? matplotlib ,如何在3D散点图中显示网格?

In 2D plots I just do: plt.grid(True) and it works like a charm. 在2D绘图中,我只是这样做: plt.grid(True) ,它的工作原理就像是一种魅力。 Now with 3D plots the same call returns a warning: 现在,对于3D图,相同的调用将返回警告:

File "/usr/lib/pymodules/python2.7/matplotlib/pyplot.py", line 2792, in grid
   ret = gca().grid(b, which, axis, **kwargs)    
TypeError: grid() takes at most 2 arguments (4 given)

How do I do this? 我该怎么做呢?

You can use the grid method of the axes to turn the grid on and off. 您可以使用轴的网格方法来打开和关闭网格。

import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D

fig = plt.figure()
ax = fig.add_subplot(211, projection='3d')
ax.plot([1,2,3,4,5],[7,4,6,2,8],[4,6,8,9,2],'*')
ax.grid(True)
ax.set_title('grid on')

ax2 = fig.add_subplot(212, projection='3d')
ax2.plot([1,2,3,4,5],[7,4,6,2,8],[4,6,8,9,2],'*')
ax2.grid(False)
ax2.set_title('grid off')
plt.show()

带或不带网格的3d图

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM