python - 使用 Matplotlib 的 3D 绘图 : Hide axes but keep axis-labels?

标签 python matplotlib plot mplot3d

我正在使用 Matplotlib 可视化三维数组。 我几乎按照我想要的方式得到了它,除了一个小障碍......请参阅下面的插图和描述,了解我可以让它做什么以及我想要它做什么......

  1. 展示一堆带有标签的立方体,还有一堆其他东西。
  2. 显示一堆立方体但没有轴标签。
  3. 这是我想要但无法实现的...我想显示一堆带有轴标签的立方体,但没有别的。

enter image description here

我希望你们能帮助我 :) 请参阅下面的源代码。

from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt
from matplotlib import rcParams
import numpy as np
rcParams['axes.labelsize'] = 14
rcParams['axes.titlesize'] = 16
rcParams['xtick.labelsize'] = 14
rcParams['ytick.labelsize'] = 14
rcParams['legend.fontsize'] = 14
rcParams['font.family'] = 'serif'
rcParams['font.serif'] = ['Computer Modern Roman']
rcParams['text.usetex'] = True
rcParams['grid.alpha'] = 0.0

def make_cube():
    """ A Cube consists of a bunch of planes..."""

    planes = {
        "top"    : ( [[0,1],[0,1]], [[0,0],[1,1]], [[1,1],[1,1]] ),
        "bottom" : ( [[0,1],[0,1]], [[0,0],[1,1]], [[0,0],[0,0]] ),
        "left"   : ( [[0,0],[0,0]], [[0,1],[0,1]], [[0,0],[1,1]] ),
        "right"  : ( [[1,1],[1,1]], [[0,1],[0,1]], [[0,0],[1,1]] ),
        "front"  : ( [[0,1],[0,1]], [[0,0],[0,0]], [[0,0],[1,1]] ),
        "back"   : ( [[0,1],[0,1]], [[1,1],[1,1]], [[0,0],[1,1]] )
    }
    return planes

def render_array(ary, highlight):
    fig = plt.figure()
    ax = fig.add_subplot(111, projection='3d')

    cube = make_cube()

    for space in xrange(0, ary.shape[0]):
        for column in xrange(0, ary.shape[1]):
            for row in xrange(0, ary.shape[2]):
                alpha = 0.01
                if highlight[space,column,row] == 1:
                    alpha = 1
                for side in cube:
                    (Xs, Ys, Zs) = (
                        np.asarray(cube[side][0])+space+space*0.2,
                        np.asarray(cube[side][2])+row+row*0.2,
                        np.asarray(cube[side][3])+column+column*0.2
                    )
                    ax.plot_surface(Xs, Ys, Zs, rstride=1, cstride=1, alpha=alpha)

    highest = 0                         # Make it look cubic
    for size in ary.shape:
        if size > highest:
            highest = size
    ax.set_xlim((0,highest))
    ax.set_ylim((0,highest))
    ax.set_zlim((0,highest))


    ax.set_xlabel('Third dimension' )   # Meant to visualize ROW-MAJOR ordering 
    ax.set_ylabel('Row(s)')
    ax.set_zlabel('Column(s)')

    #plt.axis('off')    # This also removes the axis labels... i want those...
    #ax.set_axis_off()  # this removes too much (also the labels)

    # So I try this instead...
    ax.set_xticks([])          # removes the ticks... great now the rest of it
    ax.set_yticks([])
    ax.set_zticks([])
    #ax.grid(False)             # this does nothing....
    #ax.set_frame_on(False)     # this does nothing....
    plt.show()

def main():

    subject = np.ones((3,4,3))

    highlight = np.zeros(subject.shape) # Highlight a row
    highlight[1,1,:] = 1

    render_array(subject, highlight)    # Show it

if __name__ == "__main__":
    main()

更新,多亏了答案,这是我所缺少的:

# Get rid of the panes                          
ax.w_xaxis.set_pane_color((1.0, 1.0, 1.0, 0.0)) 
ax.w_yaxis.set_pane_color((1.0, 1.0, 1.0, 0.0)) 
ax.w_zaxis.set_pane_color((1.0, 1.0, 1.0, 0.0)) 

# Get rid of the spines                         
ax.w_xaxis.line.set_color((1.0, 1.0, 1.0, 0.0)) 
ax.w_yaxis.line.set_color((1.0, 1.0, 1.0, 0.0)) 
ax.w_zaxis.line.set_color((1.0, 1.0, 1.0, 0.0))

这将连同:

# Get rid of the ticks                          
ax.set_xticks([])                               
ax.set_yticks([])                               
ax.set_zticks([])

隐藏除标签以外的所有内容,如 3) 所示。

更新

我已经清理并使代码进入工作状态,并在此处提供: https://github.com/safl/ndarray_plot

这里还有几个额外的例子: http://nbviewer.ipython.org/github/safl/ndarray_plot/blob/master/nb/ndap.ipynb

最佳答案

我尝试运行您的代码,但它无法在我的计算机上运行。

您可以在下面看到绘制球体的解决方案。基本上,我将 Pane 和书脊的颜色手动更改为 alpha=0,并将刻度设为空列表(正如您所指出的)。

from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt
from matplotlib import rcParams
import numpy as np
rcParams['axes.labelsize'] = 18
rcParams['font.family'] = 'serif'
rcParams['font.serif'] = ['Computer Modern Roman']
rcParams['text.usetex'] = True

fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')

u = np.linspace(0, 2 * np.pi, 100)
v = np.linspace(0, np.pi, 100)

x = 10 * np.outer(np.cos(u), np.sin(v))
y = 10 * np.outer(np.sin(u), np.sin(v))
z = 10 * np.outer(np.ones(np.size(u)), np.cos(v))
ax.plot_surface(x, y, z,  rstride=4, cstride=4, color='b')

# Get rid of the panes
ax.w_xaxis.set_pane_color((1.0, 1.0, 1.0, 0.0))
ax.w_yaxis.set_pane_color((1.0, 1.0, 1.0, 0.0))
ax.w_zaxis.set_pane_color((1.0, 1.0, 1.0, 0.0))

# Get rid of the spines
ax.w_xaxis.line.set_color((1.0, 1.0, 1.0, 0.0))
ax.w_yaxis.line.set_color((1.0, 1.0, 1.0, 0.0))
ax.w_zaxis.line.set_color((1.0, 1.0, 1.0, 0.0))

# Get rid of the ticks
ax.set_xticks([]) 
ax.set_yticks([]) 
ax.set_zticks([])

# Add the labels
ax.set_xlabel('Third dimension' )
ax.set_ylabel('Row(s)')
ax.set_zlabel('Column(s)')
plt.show()

这是我的输出

enter image description here

关于python - 使用 Matplotlib 的 3D 绘图 : Hide axes but keep axis-labels?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29041326/

相关文章:

python - 尝试使用正则表达式捕获特定模式 (Python 3.4)

python - 无法通过 WSL 使用 conda 显示 matplotlib 的输出

python - 防止 GridSpec 子图分离随图形大小而变化

python - 使用 pandas 的绘图方法在 1 行中绘制图表时出现问题

python - 如何使用 matplotlib 绘制方差较大的值

python - 导入错误 : No module named app

python - 如何将这个Excel文件拆分为两个数据框?

python - PhantomJS 1.8 在 python 上使用 Selenium。如何屏蔽图片?

python - 在 python(pylab) 中解析这个 csv 文件并将其转换为字典

r - 在 r 中创建带有时间刻度和标签的线图