MatplotLibAPI 3.2.21__py3-none-any.whl → 4.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- MatplotLibAPI/__init__.py +4 -86
- MatplotLibAPI/accessor.py +519 -196
- MatplotLibAPI/area.py +177 -0
- MatplotLibAPI/bar.py +185 -0
- MatplotLibAPI/base_plot.py +88 -0
- MatplotLibAPI/box_violin.py +180 -0
- MatplotLibAPI/bubble.py +568 -0
- MatplotLibAPI/{Composite.py → composite.py} +127 -106
- MatplotLibAPI/heatmap.py +223 -0
- MatplotLibAPI/histogram.py +170 -0
- MatplotLibAPI/mcp/__init__.py +17 -0
- MatplotLibAPI/mcp/metadata.py +90 -0
- MatplotLibAPI/mcp/renderers.py +45 -0
- MatplotLibAPI/mcp_server.py +626 -0
- MatplotLibAPI/network/__init__.py +28 -0
- MatplotLibAPI/network/constants.py +22 -0
- MatplotLibAPI/network/core.py +1360 -0
- MatplotLibAPI/network/plot.py +597 -0
- MatplotLibAPI/network/scaling.py +56 -0
- MatplotLibAPI/pie.py +154 -0
- MatplotLibAPI/pivot.py +274 -0
- MatplotLibAPI/sankey.py +99 -0
- MatplotLibAPI/{StyleTemplate.py → style_template.py} +27 -22
- MatplotLibAPI/sunburst.py +139 -0
- MatplotLibAPI/{Table.py → table.py} +112 -87
- MatplotLibAPI/{Timeserie.py → timeserie.py} +98 -42
- MatplotLibAPI/{Treemap.py → treemap.py} +43 -55
- MatplotLibAPI/typing.py +12 -0
- MatplotLibAPI/{_visualization_utils.py → utils.py} +7 -13
- MatplotLibAPI/waffle.py +173 -0
- MatplotLibAPI/word_cloud.py +489 -0
- {matplotlibapi-3.2.21.dist-info → matplotlibapi-4.0.0.dist-info}/METADATA +98 -9
- matplotlibapi-4.0.0.dist-info/RECORD +36 -0
- {matplotlibapi-3.2.21.dist-info → matplotlibapi-4.0.0.dist-info}/WHEEL +1 -1
- matplotlibapi-4.0.0.dist-info/entry_points.txt +2 -0
- MatplotLibAPI/Area.py +0 -80
- MatplotLibAPI/Bar.py +0 -83
- MatplotLibAPI/BoxViolin.py +0 -75
- MatplotLibAPI/Bubble.py +0 -458
- MatplotLibAPI/Heatmap.py +0 -121
- MatplotLibAPI/Histogram.py +0 -73
- MatplotLibAPI/Network.py +0 -989
- MatplotLibAPI/Pie.py +0 -70
- MatplotLibAPI/Pivot.py +0 -134
- MatplotLibAPI/Sankey.py +0 -46
- MatplotLibAPI/Sunburst.py +0 -89
- MatplotLibAPI/Waffle.py +0 -86
- MatplotLibAPI/Wordcloud.py +0 -373
- MatplotLibAPI/_typing.py +0 -17
- matplotlibapi-3.2.21.dist-info/RECORD +0 -26
- {matplotlibapi-3.2.21.dist-info → matplotlibapi-4.0.0.dist-info}/licenses/LICENSE +0 -0
MatplotLibAPI/__init__.py
CHANGED
|
@@ -1,89 +1,7 @@
|
|
|
1
1
|
"""Public API and pandas accessor for MatplotLibAPI."""
|
|
2
2
|
|
|
3
|
-
from .
|
|
4
|
-
from .
|
|
5
|
-
from .
|
|
6
|
-
from .Bubble import BUBBLE_STYLE_TEMPLATE, aplot_bubble, fplot_bubble
|
|
7
|
-
from .Composite import (
|
|
8
|
-
plot_composite_bubble,
|
|
9
|
-
plot_composite_treemap,
|
|
10
|
-
plot_wordcloud_network,
|
|
11
|
-
)
|
|
12
|
-
from .Heatmap import (
|
|
13
|
-
HEATMAP_STYLE_TEMPLATE,
|
|
14
|
-
aplot_correlation_matrix,
|
|
15
|
-
aplot_heatmap,
|
|
16
|
-
fplot_correlation_matrix,
|
|
17
|
-
fplot_heatmap,
|
|
18
|
-
)
|
|
19
|
-
from .Histogram import aplot_histogram_kde, fplot_histogram_kde
|
|
20
|
-
from .Network import (
|
|
21
|
-
NETWORK_STYLE_TEMPLATE,
|
|
22
|
-
aplot_network,
|
|
23
|
-
aplot_network_components,
|
|
24
|
-
fplot_network_components,
|
|
25
|
-
fplot_network,
|
|
26
|
-
prepare_network_graph,
|
|
27
|
-
)
|
|
28
|
-
from .Pie import aplot_pie_donut, fplot_pie_donut
|
|
29
|
-
from .Sankey import fplot_sankey
|
|
30
|
-
from .StyleTemplate import (
|
|
31
|
-
AREA_STYLE_TEMPLATE,
|
|
32
|
-
DISTRIBUTION_STYLE_TEMPLATE,
|
|
33
|
-
PIE_STYLE_TEMPLATE,
|
|
34
|
-
SANKEY_STYLE_TEMPLATE,
|
|
35
|
-
StyleTemplate,
|
|
36
|
-
)
|
|
37
|
-
from .Table import TABLE_STYLE_TEMPLATE, aplot_table, fplot_table
|
|
38
|
-
from .Timeserie import TIMESERIE_STYLE_TEMPLATE, aplot_timeserie, fplot_timeserie
|
|
39
|
-
from .Sunburst import fplot_sunburst
|
|
40
|
-
from .Treemap import TREEMAP_STYLE_TEMPLATE, fplot_treemap
|
|
41
|
-
from .Waffle import aplot_waffle, fplot_waffle
|
|
42
|
-
from .Wordcloud import (
|
|
43
|
-
WORDCLOUD_STYLE_TEMPLATE,
|
|
44
|
-
aplot_wordcloud,
|
|
45
|
-
create_circular_mask,
|
|
46
|
-
fplot_wordcloud,
|
|
47
|
-
)
|
|
48
|
-
from .accessor import DataFrameAccessor
|
|
3
|
+
from . import accessor as _accessor # noqa: F401
|
|
4
|
+
from .base_plot import BasePlot
|
|
5
|
+
from .bubble import Bubble
|
|
49
6
|
|
|
50
|
-
__all__ = [
|
|
51
|
-
"DataFrameAccessor",
|
|
52
|
-
"StyleTemplate",
|
|
53
|
-
"aplot_bubble",
|
|
54
|
-
"aplot_network",
|
|
55
|
-
"aplot_network_components",
|
|
56
|
-
"aplot_table",
|
|
57
|
-
"aplot_timeserie",
|
|
58
|
-
"aplot_wordcloud",
|
|
59
|
-
"aplot_bar",
|
|
60
|
-
"aplot_histogram_kde",
|
|
61
|
-
"aplot_box_violin",
|
|
62
|
-
"aplot_heatmap",
|
|
63
|
-
"aplot_correlation_matrix",
|
|
64
|
-
"aplot_area",
|
|
65
|
-
"aplot_pie_donut",
|
|
66
|
-
"create_circular_mask",
|
|
67
|
-
"aplot_waffle",
|
|
68
|
-
"fplot_bubble",
|
|
69
|
-
"fplot_network",
|
|
70
|
-
"fplot_network_components",
|
|
71
|
-
"fplot_table",
|
|
72
|
-
"fplot_timeserie",
|
|
73
|
-
"fplot_wordcloud",
|
|
74
|
-
"fplot_treemap",
|
|
75
|
-
"fplot_sunburst",
|
|
76
|
-
"fplot_bar",
|
|
77
|
-
"fplot_histogram_kde",
|
|
78
|
-
"fplot_box_violin",
|
|
79
|
-
"fplot_heatmap",
|
|
80
|
-
"fplot_correlation_matrix",
|
|
81
|
-
"fplot_area",
|
|
82
|
-
"fplot_pie_donut",
|
|
83
|
-
"fplot_waffle",
|
|
84
|
-
"fplot_sankey",
|
|
85
|
-
"plot_composite_bubble",
|
|
86
|
-
"plot_composite_treemap",
|
|
87
|
-
"plot_wordcloud_network",
|
|
88
|
-
"prepare_network_graph",
|
|
89
|
-
]
|
|
7
|
+
__all__ = ["BasePlot", "Bubble"]
|