python mpl_toolkits.mplot3d.axes3d.Axes3D()使用 介绍

官网说明
https://matplotlib.org/api/_as_gen/mpl_toolkits.mplot3d.axes3d.Axes3D.html

本地doc:

Init signature:

Axes3D(
    fig,
    rect=None,
    *args,
    azim=-60,
    elev=30,
    zscale=None,
    sharez=None,
    proj_type='persp',
    **kwargs,
)
Docstring:      3D axes object.
Init docstring:

Parameters
----------
fig : Figure
    The parent figure.
rect : (float, float, float, float)
    The ``(left, bottom, width, height)`` axes position.
azim : float, optional
    Azimuthal viewing angle, defaults to -60.
elev : float, optional
    Elevation viewing angle, defaults to 30.
zscale : ['function' | 'functionlog' | 'linear' | 'log' | 'logit' | 'symlog'], optional
    The z scale.  Note that currently, only a linear scale is
    supported.
sharez : Axes3D, optional
    Other axes to share z-limits with.
proj_type : {'persp', 'ortho'}
    The projection type, default 'persp'.

Notes
-----
.. versionadded:: 1.2.1
    The *sharez* parameter.
File:           c:\users\huawei\appdata\local\programs\python\python36\lib\site-packages\mpl_toolkits\mplot3d\axes3d.py
Type:           type
Subclasses:     

你可能感兴趣的:(深入浅出,python机器学习)