如何在不显示轴的情况下制作3D图?
绘制三维绘图时,Matplotlib不仅绘制x,y和z轴,还在x-y,y-z和x-z平面上绘制浅灰色网格。我想绘制一个“自由浮动”的3D图,没有这些元素。
我试过的东西:
# Doesn't work; this hides the plot, not the axes
my_3d_axes.set_visible(False)
# Doesn't do anything. Also, there's no get_zaxis() function.
my_3d_axes.get_xaxis().set_visible(False)
my_3d_axes.get_yaxis().set_visible(False)
答案 0 :(得分:24)
Ben Root提供了一个补丁,修复了1.0.1的问题。它可以作为this thread上一封电子邮件的附件找到。引用本:
好的,看起来隐藏的3d轴是v1.0发布后添加的功能(但在我开始使用mplot3d之前)。此补丁应启用基本功能,而不会干扰现有功能。要隐藏轴,您必须将私有成员“_axis3don”设置为False,如下所示:
ax = plt.gca(projection ='3d') ax._axis3don = False
如果你这样做,那么你将获得你想要的东西,并且你的代码在升级时仍然与mplot3d兼容(尽管首选的方法是调用set_axis_on()或set_axis_off())。 / p>
我希望有所帮助!
Ben Root
答案 1 :(得分:1)
ax.set_axis_off()
仅提供https://stackoverflow.com/a/7363931/895245
中提到的内容的具体而直接的示例#!/usr/bin/env python3
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.patches import Circle
import mpl_toolkits.mplot3d.art3d as art3d
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.set_axis_off()
# Draw a circle on the x=0 'wall'
p = Circle((0, 0), 1, fill=False)
ax.add_patch(p)
art3d.pathpatch_2d_to_3d(p, zdir="x")
p = Circle((0, 0), 1, fill=False)
ax.add_patch(p)
art3d.pathpatch_2d_to_3d(p, zdir="z")
ax.set_xlim(-1.2, 1.2)
ax.set_ylim(-1.2, 1.2)
ax.set_zlim(-1.2, 1.2)
plt.savefig('main.png', format='png', bbox_inches='tight')
输出:
如果没有ax.set_axis_off()
,它将看起来像:
但是,您会注意到,这会在图形和bbox_inches='tight'
did not help as it does in 2D周围产生过大的空白边距。如何在以下位置解决问题:Remove white spaces in Axes3d (matplotlib)
在matplotlib == 3.2.2。上进行了测试