删除3D绘图中的轴边距

dol*_*hin 11 python axes margins matplotlib

我花了几天时间试图找到一种方法来消除3D图中轴的微小边距.我试过ax.margins(0)ax.autoscale_view('tight')其他方法,但这些小的利润仍然存在.特别是,我不喜欢条形直方图被提升,即它们的底部不是零水平 - 参见示例图像.

所有轴上的不需要的边距

在gnuplot中,我会使用"set xyplane at 0".在matplotlib中,由于两侧的每个轴都有边距,因此能够控制每个轴都很棒.

编辑: 下面的HYRY解决方案效果很好,但是'X'轴在Y = 0时得到一条网格线:

奇怪的轴

HYR*_*YRY 8

没有可以修改此边距的属性或方法.您需要修补源代码.这是一个例子:

from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np
###patch start###
from mpl_toolkits.mplot3d.axis3d import Axis
if not hasattr(Axis, "_get_coord_info_old"):
    def _get_coord_info_new(self, renderer):
        mins, maxs, centers, deltas, tc, highs = self._get_coord_info_old(renderer)
        mins += deltas / 4
        maxs -= deltas / 4
        return mins, maxs, centers, deltas, tc, highs
    Axis._get_coord_info_old = Axis._get_coord_info  
    Axis._get_coord_info = _get_coord_info_new
###patch end###

fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
for c, z in zip(['r', 'g', 'b', 'y'], [30, 20, 10, 0]):
    xs = np.arange(20)
    ys = np.random.rand(20)

    # You can provide either a single color or an array. To demonstrate this,
    # the first bar of each set will be colored cyan.
    cs = [c] * len(xs)
    cs[0] = 'c'
    ax.bar(xs, ys, zs=z, zdir='y', color=cs, alpha=0.8)

ax.set_xlabel('X')
ax.set_ylabel('Y')
ax.set_zlabel('Z')

plt.show()
Run Code Online (Sandbox Code Playgroud)

结果是:

在此输入图像描述

编辑

要更改网格线的颜色:

for axis in (ax.xaxis, ax.yaxis, ax.zaxis):
    axis._axinfo['grid']['color']  = 0.7, 1.0, 0.7, 1.0
Run Code Online (Sandbox Code Playgroud)

EDIT2

设置X&Y lim:

ax.set_ylim3d(-1, 31)
ax.set_xlim3d(-1, 21)
Run Code Online (Sandbox Code Playgroud)