MatplotLibAPI 3.2.1__py3-none-any.whl → 3.2.2__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/Bubble.py CHANGED
@@ -1,12 +1,13 @@
1
1
  # Hint for Visual Code Python Interactive window
2
2
  # %%
3
- from typing import Optional
3
+ from typing import Optional, Tuple
4
4
  import pandas as pd
5
5
  import matplotlib.pyplot as plt
6
6
  from matplotlib.axes import Axes
7
+ from matplotlib.figure import Figure
7
8
  import seaborn as sns
8
9
 
9
- from .StyleTemplate import DynamicFuncFormatter, StyleTemplate, generate_ticks, string_formatter, bmk_formatter, percent_formatter, format_func,validate_dataframe
10
+ from .StyleTemplate import DynamicFuncFormatter, StyleTemplate, generate_ticks, string_formatter, bmk_formatter, percent_formatter, format_func, validate_dataframe
10
11
 
11
12
  BUBBLE_STYLE_TEMPLATE = StyleTemplate(
12
13
  format_funcs={"label": string_formatter,
@@ -18,7 +19,7 @@ BUBBLE_STYLE_TEMPLATE = StyleTemplate(
18
19
  )
19
20
 
20
21
 
21
- def plot_bubble(
22
+ def plot_bubble_ax(
22
23
  pd_df: pd.DataFrame,
23
24
  label: str,
24
25
  x: str,
@@ -30,6 +31,8 @@ def plot_bubble(
30
31
  center_to_mean: bool = False,
31
32
  sort_by: Optional[str] = None,
32
33
  ascending: bool = False,
34
+ hline=False,
35
+ vline=False,
33
36
  ax: Optional[Axes] = None):
34
37
 
35
38
  validate_dataframe(pd_df, cols=[label, x, y, z], sort_by=sort_by)
@@ -92,17 +95,18 @@ def plot_bubble(
92
95
  which='major',
93
96
  colors=style.font_color,
94
97
  labelsize=style.font_size)
95
-
96
- ax.vlines(x=x_mean,
97
- ymin=y_min,
98
- ymax=y_max,
99
- linestyle='--',
100
- colors=style.font_color)
101
- ax.hlines(y=y_mean,
102
- xmin=x_min,
103
- xmax=x_max,
104
- linestyle='--',
105
- colors=style.font_color)
98
+ if vline:
99
+ ax.vlines(x=x_mean,
100
+ ymin=y_min,
101
+ ymax=y_max,
102
+ linestyle='--',
103
+ colors=style.font_color)
104
+ if hline:
105
+ ax.hlines(y=y_mean,
106
+ xmin=x_min,
107
+ xmax=x_max,
108
+ linestyle='--',
109
+ colors=style.font_color)
106
110
 
107
111
  for index, row in plot_df.iterrows():
108
112
  x_value = row[x]
@@ -121,4 +125,41 @@ def plot_bubble(
121
125
  return ax
122
126
 
123
127
 
128
+ def plot_bubble_fig(
129
+ pd_df: pd.DataFrame,
130
+ label: str,
131
+ x: str,
132
+ y: str,
133
+ z: str,
134
+ title: Optional[str] = "Test",
135
+ style: StyleTemplate = BUBBLE_STYLE_TEMPLATE,
136
+ max_values: int = BUBBLE_STYLE_TEMPLATE,
137
+ center_to_mean: bool = False,
138
+ sort_by: Optional[str] = None,
139
+ ascending: bool = False,
140
+ hline=False,
141
+ vline=False,
142
+ figsize: Tuple[float, float] = (19.2, 10.8)) -> Figure:
143
+
144
+ fig = plt.figure(figsize=figsize)
145
+ fig.patch.set_facecolor(style.background_color)
146
+ ax = fig.add_subplot()
147
+ ax = plot_bubble_ax(pd_df=pd_df,
148
+ label=label,
149
+ x=x,
150
+ y=y,
151
+ z=z,
152
+ title=title,
153
+ style=style,
154
+ max_values=max_values,
155
+ center_to_mean=center_to_mean,
156
+ sort_by=sort_by,
157
+ ascending=ascending,
158
+ hline=hline,
159
+ vline=vline,
160
+ ax=ax)
161
+ return fig
162
+
163
+
164
+
124
165
  # endregion
@@ -5,12 +5,12 @@ import pandas as pd
5
5
  import matplotlib.pyplot as plt
6
6
  from matplotlib.figure import Figure
7
7
 
8
- from .Network import plot_network, plot_network_components, DEFAULT
9
- from .Bubble import plot_bubble, BUBBLE_STYLE_TEMPLATE
10
- from .Table import plot_table
8
+ from .Bubble import plot_bubble_ax, BUBBLE_STYLE_TEMPLATE
9
+ from .Table import plot_table_ax
11
10
  from .StyleTemplate import StyleTemplate, format_func, validate_dataframe
12
11
 
13
12
 
13
+
14
14
  def plot_composite_bubble(
15
15
  pd_df: pd.DataFrame,
16
16
  label: str,
@@ -38,10 +38,10 @@ def plot_composite_bubble(
38
38
  style.format_funcs = format_func(
39
39
  style.format_funcs, label=label, x=x, y=y, z=z)
40
40
  fig = plt.figure(figsize=figsize)
41
- fig.patch.set_facecolor("black")
41
+ fig.patch.set_facecolor(style.background_color)
42
42
  grid = plt.GridSpec(2, 2, height_ratios=[2, 1], width_ratios=[1, 1])
43
43
  ax = fig.add_subplot(grid[0, 0:])
44
- ax = plot_bubble(pd_df=plot_df,
44
+ ax = plot_bubble_ax(pd_df=plot_df,
45
45
  label=label,
46
46
  x=x,
47
47
  y=y,
@@ -64,7 +64,7 @@ def plot_composite_bubble(
64
64
  style.format_funcs[z] = style.format_funcs["z"]
65
65
 
66
66
  ax2 = fig.add_subplot(grid[1, 0])
67
- ax2 = plot_table(
67
+ ax2 = plot_table_ax(
68
68
  pd_df=plot_df,
69
69
  cols=[label, z, y, x],
70
70
  title=f"Top {table_rows}",
@@ -75,7 +75,7 @@ def plot_composite_bubble(
75
75
  style=style
76
76
  )
77
77
  ax3 = fig.add_subplot(grid[1, 1])
78
- ax3 = plot_table(
78
+ ax3 = plot_table_ax(
79
79
  pd_df=plot_df,
80
80
  cols=[label, z, y, x],
81
81
  title=f"Worst {table_rows}",
MatplotLibAPI/Table.py CHANGED
@@ -1,9 +1,10 @@
1
- from typing import List, Optional
1
+ from typing import List, Optional, Tuple
2
2
  import pandas as pd
3
3
  import matplotlib.pyplot as plt
4
4
  from matplotlib.axes import Axes
5
+ from matplotlib.figure import Figure
5
6
 
6
- from .StyleTemplate import StyleTemplate, string_formatter,validate_dataframe
7
+ from .StyleTemplate import StyleTemplate, string_formatter, validate_dataframe
7
8
 
8
9
  TABLE_STYLE_TEMPLATE = StyleTemplate(
9
10
  background_color='black',
@@ -13,7 +14,7 @@ TABLE_STYLE_TEMPLATE = StyleTemplate(
13
14
  )
14
15
 
15
16
 
16
- def plot_table(pd_df: pd.DataFrame,
17
+ def plot_table_ax(pd_df: pd.DataFrame,
17
18
  cols: List[str],
18
19
  title: Optional[str] = None,
19
20
  style: StyleTemplate = TABLE_STYLE_TEMPLATE,
@@ -23,7 +24,7 @@ def plot_table(pd_df: pd.DataFrame,
23
24
  ax: Optional[Axes] = None
24
25
  ) -> Axes:
25
26
  validate_dataframe(pd_df, cols=cols, sort_by=sort_by)
26
-
27
+
27
28
  if not sort_by:
28
29
  sort_by = cols[0]
29
30
 
@@ -64,3 +65,27 @@ def plot_table(pd_df: pd.DataFrame,
64
65
  ax.set_title(title, color=style.font_color, fontsize=style.font_size*2)
65
66
  ax.title.set_position([0.5, 1.05])
66
67
  return ax
68
+
69
+
70
+ def plot_table_fig(pd_df: pd.DataFrame,
71
+ cols: List[str],
72
+ title: Optional[str] = None,
73
+ style: StyleTemplate = TABLE_STYLE_TEMPLATE,
74
+ max_values: int = 20,
75
+ sort_by: Optional[str] = None,
76
+ ascending: bool = False,
77
+ figsize: Tuple[float, float] = (19.2, 10.8)
78
+ ) -> Figure:
79
+ fig = plt.figure(figsize=figsize)
80
+ fig.patch.set_facecolor(style.background_color)
81
+ ax = fig.add_subplot()
82
+ ax = plot_table_ax(pd_df,
83
+ cols,
84
+ title,
85
+ style,
86
+ max_values,
87
+ sort_by,
88
+ ascending,
89
+ ax
90
+ )
91
+ return fig
@@ -1,12 +1,13 @@
1
1
  # Hint for Visual Code Python Interactive window
2
2
  # %%
3
- from typing import Optional
3
+ from typing import Optional, Tuple
4
4
  import pandas as pd
5
5
  import matplotlib.pyplot as plt
6
+ from matplotlib.figure import Figure
6
7
  from matplotlib.axes import Axes
7
8
  import seaborn as sns
8
9
 
9
- from .StyleTemplate import DynamicFuncFormatter, StyleTemplate, string_formatter, bmk_formatter, format_func,validate_dataframe
10
+ from .StyleTemplate import DynamicFuncFormatter, StyleTemplate, string_formatter, bmk_formatter, format_func, validate_dataframe
10
11
 
11
12
 
12
13
  TIMESERIE_STYLE_TEMPLATE = StyleTemplate(
@@ -16,16 +17,18 @@ TIMESERIE_STYLE_TEMPLATE = StyleTemplate(
16
17
 
17
18
  # region Line
18
19
 
19
- def plot_timeserie(pd_df: pd.DataFrame,
20
- label: str,
21
- x: str,
22
- y: str,
23
- title: Optional[str] = None,
24
- style: StyleTemplate = TIMESERIE_STYLE_TEMPLATE,
25
- max_values: int = 100,
26
- sort_by: Optional[str] = None,
27
- ascending: bool = False,
28
- ax: Optional[Axes] = None) -> Axes:
20
+
21
+ def plot_timeserie_ax(pd_df: pd.DataFrame,
22
+ label: str,
23
+ x: str,
24
+ y: str,
25
+ title: Optional[str] = None,
26
+ style: StyleTemplate = TIMESERIE_STYLE_TEMPLATE,
27
+ max_values: int = 100,
28
+ sort_by: Optional[str] = None,
29
+ ascending: bool = False,
30
+ std: bool = False,
31
+ ax: Optional[Axes] = None) -> Axes:
29
32
 
30
33
  validate_dataframe(pd_df, cols=[label, x, y], sort_by=sort_by)
31
34
  style.format_funcs = format_func(style.format_funcs, label=label, x=x, y=y)
@@ -51,21 +54,23 @@ def plot_timeserie(pd_df: pd.DataFrame,
51
54
 
52
55
  if style.format_funcs.get("label"):
53
56
  label_type = style.format_funcs.get("label")(label_type)
54
-
55
- ma = temp_df[y].rolling(window=7, min_periods=1).mean()
56
- std_dev = temp_df[y].rolling(window=7, min_periods=1).std()
57
-
58
- # Calculate the last moving average value to include in the legend
59
- last_ma_value = ma.iloc[-1]
60
-
61
- # Dynamically creating the legend label
62
- label_str = f"{string_formatter(label_type)} (avg 7d: {style.format_funcs[y](last_ma_value)})"
63
-
64
- # Plot moving average and include the last MA value in the label for the legend
65
- plt.plot(temp_df.index, ma, color=color,
66
- linestyle='--', label=label_str)
67
- plt.fill_between(temp_df.index, ma - std_dev, ma +
68
- std_dev, color=color, alpha=0.2, label='_nolegend_')
57
+ if std:
58
+ ma = temp_df[y].rolling(window=7, min_periods=1).mean()
59
+ std_dev = temp_df[y].rolling(window=7, min_periods=1).std()
60
+ # Calculate the last moving average value to include in the legend
61
+ last_ma_value = ma.iloc[-1]
62
+ # Dynamically creating the legend label
63
+ label_str = f"{string_formatter(label_type)} (avg 7d: {style.format_funcs[y](last_ma_value)})"
64
+ # Plot moving average and include the last MA value in the label for the legend
65
+ ax.plot(temp_df.index, ma, color=color,
66
+ linestyle='--', label=label_str)
67
+
68
+ ax.fill_between(temp_df.index, ma - std_dev, ma +
69
+ std_dev, color=color, alpha=0.2, label='_nolegend_')
70
+ else:
71
+ label_str = f"{string_formatter(label_type)}"
72
+ # Plot moving average and include the last MA value in the label for the legend
73
+ ax.plot(temp_df.index, temp_df[y], color=color, label=label_str)
69
74
 
70
75
  ax.legend(
71
76
  title=label,
@@ -94,4 +99,30 @@ def plot_timeserie(pd_df: pd.DataFrame,
94
99
  return ax
95
100
 
96
101
 
102
+ def plot_timeserie_fig(pd_df: pd.DataFrame,
103
+ label: str,
104
+ x: str,
105
+ y: str,
106
+ title: Optional[str] = None,
107
+ style: StyleTemplate = TIMESERIE_STYLE_TEMPLATE,
108
+ max_values: int = 100,
109
+ sort_by: Optional[str] = None,
110
+ ascending: bool = False,
111
+ std: bool = False,
112
+ figsize: Tuple[float, float] = (19.2, 10.8)) -> Figure:
113
+ fig = plt.figure(figsize=figsize)
114
+ fig.patch.set_facecolor(style.background_color)
115
+ ax = fig.add_subplot()
116
+ ax = plot_timeserie_ax(pd_df=pd_df,
117
+ label=label,
118
+ x=x,
119
+ y=y,
120
+ title=title,
121
+ style=style,
122
+ max_values=max_values,
123
+ std=std,
124
+ sort_by=sort_by,
125
+ ascending=ascending,
126
+ ax=ax)
127
+ return fig
97
128
  # endregion
MatplotLibAPI/__init__.py CHANGED
@@ -1,12 +1,12 @@
1
1
 
2
2
  from .StyleTemplate import StyleTemplate
3
- from .Bubble import plot_bubble, BUBBLE_STYLE_TEMPLATE
3
+ from .Bubble import plot_bubble_ax, plot_bubble_fig, BUBBLE_STYLE_TEMPLATE
4
4
  from .Composite import plot_composite_bubble
5
- from .Timeserie import plot_timeserie, TIMESERIE_STYLE_TEMPLATE
6
- from .Table import plot_table, TABLE_STYLE_TEMPLATE
5
+ from .Timeserie import plot_timeserie_ax, plot_timeserie_fig, TIMESERIE_STYLE_TEMPLATE
6
+ from .Table import plot_table_ax, plot_table_fig, TABLE_STYLE_TEMPLATE
7
7
  from .Network import plot_network, plot_network_components, NETWORK_STYLE_TEMPLATE
8
8
  from .Treemap import plot_treemap, TREEMAP_STYLE_TEMPLATE
9
- from typing import List, Optional
9
+ from typing import List, Optional, Tuple
10
10
  import pandas as pd
11
11
  from pandas.api.extensions import register_dataframe_accessor
12
12
 
@@ -21,31 +21,65 @@ class DataFrameAccessor:
21
21
  def __init__(self, pd_df: pd.DataFrame):
22
22
  self._obj = pd_df
23
23
 
24
- def plot_bubble(self,
25
- label: str,
26
- x: str,
27
- y: str,
28
- z: str,
29
- title: Optional[str] = None,
30
- style: StyleTemplate = BUBBLE_STYLE_TEMPLATE,
31
- max_values: int = 50,
32
- center_to_mean: bool = False,
33
- sort_by: Optional[str] = None,
34
- ascending: bool = False,
35
- ax: Optional[Axes] = None) -> Axes:
36
-
37
- return plot_bubble(pd_df=self._obj,
38
- label=label,
39
- x=x,
40
- y=y,
41
- z=z,
42
- title=title,
43
- style=style,
44
- max_values=max_values,
45
- center_to_mean=center_to_mean,
46
- sort_by=sort_by,
47
- ascending=ascending,
48
- ax=ax)
24
+ def plot_bubble_ax(self,
25
+ label: str,
26
+ x: str,
27
+ y: str,
28
+ z: str,
29
+ title: Optional[str] = None,
30
+ style: StyleTemplate = BUBBLE_STYLE_TEMPLATE,
31
+ max_values: int = 50,
32
+ center_to_mean: bool = False,
33
+ sort_by: Optional[str] = None,
34
+ ascending: bool = False,
35
+ hline: bool = False,
36
+ vline: bool = False,
37
+ ax: Optional[Axes] = None) -> Axes:
38
+
39
+ return plot_bubble_ax(pd_df=self._obj,
40
+ label=label,
41
+ x=x,
42
+ y=y,
43
+ z=z,
44
+ title=title,
45
+ style=style,
46
+ max_values=max_values,
47
+ center_to_mean=center_to_mean,
48
+ sort_by=sort_by,
49
+ ascending=ascending,
50
+ hline=hline,
51
+ vline=vline,
52
+ ax=ax)
53
+
54
+ def plot_bubble_fig(self,
55
+ label: str,
56
+ x: str,
57
+ y: str,
58
+ z: str,
59
+ title: Optional[str] = None,
60
+ style: StyleTemplate = BUBBLE_STYLE_TEMPLATE,
61
+ max_values: int = 50,
62
+ center_to_mean: bool = False,
63
+ sort_by: Optional[str] = None,
64
+ ascending: bool = False,
65
+ hline: bool = False,
66
+ vline: bool = False,
67
+ figsize: Tuple[float, float] = (19.2, 10.8)) -> Figure:
68
+
69
+ return plot_bubble_fig(pd_df=self._obj,
70
+ label=label,
71
+ x=x,
72
+ y=y,
73
+ z=z,
74
+ title=title,
75
+ style=style,
76
+ max_values=max_values,
77
+ center_to_mean=center_to_mean,
78
+ sort_by=sort_by,
79
+ ascending=ascending,
80
+ hline=hline,
81
+ vline=vline,
82
+ figsize=figsize)
49
83
 
50
84
  def plot_composite_bubble(self,
51
85
  label: str,
@@ -73,45 +107,89 @@ class DataFrameAccessor:
73
107
  ascending=ascending,
74
108
  ax=ax)
75
109
 
76
- def plot_table(self,
77
- cols: List[str],
78
- title: Optional[str] = None,
79
- style: StyleTemplate = TABLE_STYLE_TEMPLATE,
80
- max_values: int = 20,
81
- sort_by: Optional[str] = None,
82
- ascending: bool = False,
83
- ax: Optional[Axes] = None) -> Axes:
84
-
85
- return plot_table(pd_df=self._obj,
86
- cols=cols,
87
- title=title,
88
- style=style,
89
- max_values=max_values,
90
- sort_by=sort_by,
91
- ascending=ascending,
92
- ax=ax)
93
-
94
- def plot_timeserie(self,
95
- label: str,
96
- x: str,
97
- y: str,
110
+ def plot_table_ax(self,
111
+ cols: List[str],
112
+ title: Optional[str] = None,
113
+ style: StyleTemplate = TABLE_STYLE_TEMPLATE,
114
+ max_values: int = 20,
115
+ sort_by: Optional[str] = None,
116
+ ascending: bool = False,
117
+ ax: Optional[Axes] = None) -> Axes:
118
+
119
+ return plot_table_ax(pd_df=self._obj,
120
+ cols=cols,
121
+ title=title,
122
+ style=style,
123
+ max_values=max_values,
124
+ sort_by=sort_by,
125
+ ascending=ascending,
126
+ ax=ax)
127
+
128
+ def plot_table_fig(self,
129
+ cols: List[str],
98
130
  title: Optional[str] = None,
99
- style: StyleTemplate = TIMESERIE_STYLE_TEMPLATE,
100
- max_values: int = 100,
131
+ style: StyleTemplate = TABLE_STYLE_TEMPLATE,
132
+ max_values: int = 20,
101
133
  sort_by: Optional[str] = None,
102
134
  ascending: bool = False,
103
- ax: Optional[Axes] = None) -> Axes:
135
+ figsize: Tuple[float, float] = (19.2, 10.8)) -> Axes:
104
136
 
105
- return plot_timeserie(pd_df=self._obj,
106
- label=label,
107
- x=x,
108
- y=y,
137
+ return plot_table_fig(pd_df=self._obj,
138
+ cols=cols,
109
139
  title=title,
110
140
  style=style,
111
141
  max_values=max_values,
112
142
  sort_by=sort_by,
113
143
  ascending=ascending,
114
- ax=ax)
144
+ figsize=figsize)
145
+
146
+ def plot_timeserie_ax(self,
147
+ label: str,
148
+ x: str,
149
+ y: str,
150
+ title: Optional[str] = None,
151
+ style: StyleTemplate = TIMESERIE_STYLE_TEMPLATE,
152
+ max_values: int = 100,
153
+ sort_by: Optional[str] = None,
154
+ ascending: bool = False,
155
+ std: bool = False,
156
+ ax: Optional[Axes] = None) -> Axes:
157
+
158
+ return plot_timeserie_ax(pd_df=self._obj,
159
+ label=label,
160
+ x=x,
161
+ y=y,
162
+ title=title,
163
+ style=style,
164
+ max_values=max_values,
165
+ sort_by=sort_by,
166
+ ascending=ascending,
167
+ std=std,
168
+ ax=ax)
169
+
170
+ def plot_timeserie_fig(self,
171
+ label: str,
172
+ x: str,
173
+ y: str,
174
+ title: Optional[str] = None,
175
+ style: StyleTemplate = TIMESERIE_STYLE_TEMPLATE,
176
+ max_values: int = 100,
177
+ sort_by: Optional[str] = None,
178
+ ascending: bool = False,
179
+ std: bool = False,
180
+ figsize: Tuple[float, float] = (19.2, 10.8)) -> Axes:
181
+
182
+ return plot_timeserie_fig(pd_df=self._obj,
183
+ label=label,
184
+ x=x,
185
+ y=y,
186
+ title=title,
187
+ style=style,
188
+ max_values=max_values,
189
+ sort_by=sort_by,
190
+ ascending=ascending,
191
+ std=std,
192
+ figsize=figsize)
115
193
 
116
194
  def plot_network(self,
117
195
  source: str = "source",
@@ -177,5 +255,5 @@ class DataFrameAccessor:
177
255
  ascending=ascending)
178
256
 
179
257
 
180
- __all__ = ["validate_dataframe", "plot_bubble", "plot_timeserie", "plot_table", "plot_network", "plot_network_components",
258
+ __all__ = ["validate_dataframe", "plot_bubble_ax", "plot_timeserie_ax", "plot_table_ax", "plot_network", "plot_network_components",
181
259
  "plot_pivotbar", "plot_treemap", "plot_composite_bubble", "StyleTemplate", "DataFrameAccessor"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: MatplotLibAPI
3
- Version: 3.2.1
3
+ Version: 3.2.2
4
4
  Requires-Python: >=3.7
5
5
  Description-Content-Type: text/markdown
6
6
  License-File: LICENSE
@@ -0,0 +1,14 @@
1
+ MatplotLibAPI/Bubble.py,sha256=frIyQOuiw4UUDq0pP983fLTSWD3-sdNOa65qwSaynZo,5123
2
+ MatplotLibAPI/Composite.py,sha256=q-Jit2DsqTYmOF_9vmfb0sDwtZWRywHjzsidgywTjdw,2810
3
+ MatplotLibAPI/Network.py,sha256=X-x5SKjncSFcK0bFd60e-HEbW4oBm9XIQKZtboPB4Eo,14849
4
+ MatplotLibAPI/Pivot.py,sha256=Bo7ZpkxqoE75e8vpSsKIT5X2Q7lLdfAyy46ox1fARbc,7183
5
+ MatplotLibAPI/StyleTemplate.py,sha256=va8_yXaun1RnjQUOEHGvsXJrKWHdzz4BhnY0CkROLW8,4599
6
+ MatplotLibAPI/Table.py,sha256=L9BiL16HFyCdYWHmbgkGaMFIThhhF_GSgh1OAILMlxQ,2816
7
+ MatplotLibAPI/Timeserie.py,sha256=5d-g60iLQlhsxLQdOaoQboQUAnu1mkpptSZ06k9Kuo4,4959
8
+ MatplotLibAPI/Treemap.py,sha256=ELkmcNZuWh-thd4gKwqkSQTisnBDutHHgxGuH1ZBzsg,2552
9
+ MatplotLibAPI/__init__.py,sha256=09gabCsJezGwaq_BUXvEjd2LQmStNr5B8r14WA1OZdc,11388
10
+ MatplotLibAPI-3.2.2.dist-info/LICENSE,sha256=hMErKLb6YZR3lRR5zr-vxeFkvY69QAaafgSpZ5-P1dQ,1067
11
+ MatplotLibAPI-3.2.2.dist-info/METADATA,sha256=5vQRvyDbS30i80HtP22uLgvmnkaPCtn0_79LetKnHGs,462
12
+ MatplotLibAPI-3.2.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
13
+ MatplotLibAPI-3.2.2.dist-info/top_level.txt,sha256=MrzbBjDEW48Vb6YhQIqpFYGOhHzQnEIM5Qy2xy2iqew,14
14
+ MatplotLibAPI-3.2.2.dist-info/RECORD,,
@@ -1,14 +0,0 @@
1
- MatplotLibAPI/Bubble.py,sha256=haIj43o-t9P1OsIRNgS5_XVovdjCJGarMrr1V-bQWAI,3842
2
- MatplotLibAPI/Composite.py,sha256=-ZXJQFkBzCtMoufKZUTRdH5fbhdRkHxLkXq-vdtRLSM,2847
3
- MatplotLibAPI/Network.py,sha256=X-x5SKjncSFcK0bFd60e-HEbW4oBm9XIQKZtboPB4Eo,14849
4
- MatplotLibAPI/Pivot.py,sha256=Bo7ZpkxqoE75e8vpSsKIT5X2Q7lLdfAyy46ox1fARbc,7183
5
- MatplotLibAPI/StyleTemplate.py,sha256=va8_yXaun1RnjQUOEHGvsXJrKWHdzz4BhnY0CkROLW8,4599
6
- MatplotLibAPI/Table.py,sha256=4vgvF2pXjewd23-a7KyuLQs-Hohnv69VK1_uRPgGi_o,2005
7
- MatplotLibAPI/Timeserie.py,sha256=cqPONNvDmJ_7UmkOBVpBbD9oEgS79SbhEVlf1qZ3kW0,3446
8
- MatplotLibAPI/Treemap.py,sha256=ELkmcNZuWh-thd4gKwqkSQTisnBDutHHgxGuH1ZBzsg,2552
9
- MatplotLibAPI/__init__.py,sha256=O1b1kutZ_E8pUx4lkQTM2OXjZQIWQ8X7CUPScHRq5dI,7691
10
- MatplotLibAPI-3.2.1.dist-info/LICENSE,sha256=hMErKLb6YZR3lRR5zr-vxeFkvY69QAaafgSpZ5-P1dQ,1067
11
- MatplotLibAPI-3.2.1.dist-info/METADATA,sha256=6fvA8pdZp_AWIDUNVBEm1vwhCkNUQ01XP3WYiJbMgUg,462
12
- MatplotLibAPI-3.2.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
13
- MatplotLibAPI-3.2.1.dist-info/top_level.txt,sha256=MrzbBjDEW48Vb6YhQIqpFYGOhHzQnEIM5Qy2xy2iqew,14
14
- MatplotLibAPI-3.2.1.dist-info/RECORD,,