Fixed database typo and removed unnecessary class identifier.
This commit is contained in:
parent
00ad49a143
commit
45fb349a7d
5098 changed files with 952558 additions and 85 deletions
11
venv/Lib/site-packages/mpl_toolkits/axes_grid/__init__.py
Normal file
11
venv/Lib/site-packages/mpl_toolkits/axes_grid/__init__.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
from . import axes_size as Size
|
||||
from .axes_divider import Divider, SubplotDivider, make_axes_locatable
|
||||
from .axes_grid import Grid, ImageGrid, AxesGrid
|
||||
#from axes_divider import make_axes_locatable
|
||||
from matplotlib.cbook import warn_deprecated
|
||||
warn_deprecated(since='2.1',
|
||||
name='mpl_toolkits.axes_grid',
|
||||
alternative='mpl_toolkits.axes_grid1 and'
|
||||
' mpl_toolkits.axisartist, which provide'
|
||||
' the same functionality',
|
||||
obj_type='module')
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,6 @@
|
|||
from matplotlib.offsetbox import AnchoredOffsetbox, AuxTransformBox, VPacker,\
|
||||
TextArea, AnchoredText, DrawingArea, AnnotationBbox
|
||||
|
||||
from mpl_toolkits.axes_grid1.anchored_artists import \
|
||||
AnchoredDrawingArea, AnchoredAuxTransformBox, \
|
||||
AnchoredEllipse, AnchoredSizeBar
|
|
@ -0,0 +1 @@
|
|||
from mpl_toolkits.axisartist.angle_helper import *
|
|
@ -0,0 +1,3 @@
|
|||
from mpl_toolkits.axes_grid1.axes_divider import (
|
||||
AxesDivider, AxesLocator, Divider, SubplotDivider, make_axes_locatable)
|
||||
from mpl_toolkits.axisartist.axislines import Axes
|
|
@ -0,0 +1,2 @@
|
|||
from mpl_toolkits.axisartist.axes_grid import (
|
||||
AxesGrid, CbarAxes, Grid, ImageGrid)
|
|
@ -0,0 +1 @@
|
|||
from mpl_toolkits.axisartist.axes_rgb import *
|
|
@ -0,0 +1 @@
|
|||
from mpl_toolkits.axes_grid1.axes_size import *
|
|
@ -0,0 +1 @@
|
|||
from mpl_toolkits.axisartist.axis_artist import *
|
|
@ -0,0 +1 @@
|
|||
from mpl_toolkits.axisartist.axisline_style import *
|
|
@ -0,0 +1 @@
|
|||
from mpl_toolkits.axisartist.axislines import *
|
|
@ -0,0 +1 @@
|
|||
from mpl_toolkits.axisartist.clip_path import *
|
|
@ -0,0 +1,5 @@
|
|||
from mpl_toolkits.axes_grid1.colorbar import (
|
||||
make_axes_kw_doc, colormap_kw_doc, colorbar_doc,
|
||||
CbarAxesLocator, ColorbarBase, Colorbar,
|
||||
make_axes, colorbar
|
||||
)
|
|
@ -0,0 +1 @@
|
|||
from mpl_toolkits.axisartist.floating_axes import *
|
|
@ -0,0 +1 @@
|
|||
from mpl_toolkits.axisartist.grid_finder import *
|
|
@ -0,0 +1 @@
|
|||
from mpl_toolkits.axisartist.grid_helper_curvelinear import *
|
|
@ -0,0 +1,4 @@
|
|||
from mpl_toolkits.axes_grid1.inset_locator import InsetPosition, \
|
||||
AnchoredSizeLocator, \
|
||||
AnchoredZoomLocator, BboxPatch, BboxConnector, BboxConnectorPatch, \
|
||||
inset_axes, zoomed_inset_axes, mark_inset
|
|
@ -0,0 +1,10 @@
|
|||
from mpl_toolkits.axes_grid1.parasite_axes import (
|
||||
host_axes_class_factory, parasite_axes_class_factory,
|
||||
parasite_axes_auxtrans_class_factory, subplot_class_factory)
|
||||
from mpl_toolkits.axisartist.axislines import Axes
|
||||
|
||||
|
||||
ParasiteAxes = parasite_axes_class_factory(Axes)
|
||||
ParasiteAxesAuxTrans = parasite_axes_auxtrans_class_factory(ParasiteAxes)
|
||||
HostAxes = host_axes_class_factory(Axes)
|
||||
SubplotHost = subplot_class_factory(HostAxes)
|
Loading…
Add table
Add a link
Reference in a new issue