Python数据分析三剑客:Pandas、Numpy、MatplotlibDeep Learningpython

Matplotlib:mpl_toolkits.mplot3d工

2018-08-24  本文已影响45人  ACphart

简介

使用

导入
画图
fig = plt.figure()
ax = p3d.Axes3D(fig)

或者

fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
In [1]: %matplotlib inline
        import numpy as np
        import matplotlib.pyplot as plt
        import mpl_toolkits.mplot3d as p3d

        fig = plt.figure()
        ax = p3d.Axes3D(fig)

        z = np.linspace(0, 15, 1000)
        x = np.sin(z)
        y = np.cos(z)
        ax.plot(x, y, z, 'green')
效果如下:
上一篇下一篇

猜你喜欢

热点阅读