MatplotLibAPI 3.2.10__tar.gz → 3.2.12__tar.gz

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.
Files changed (19) hide show
  1. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/MatplotLibAPI/Composite.py +13 -13
  2. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/MatplotLibAPI/__init__.py +4 -2
  3. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12/MatplotLibAPI.egg-info}/PKG-INFO +1 -1
  4. {matplotlibapi-3.2.10/MatplotLibAPI.egg-info → matplotlibapi-3.2.12}/PKG-INFO +1 -1
  5. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/pyproject.toml +1 -1
  6. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/LICENSE +0 -0
  7. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/MatplotLibAPI/Bubble.py +0 -0
  8. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/MatplotLibAPI/Network.py +0 -0
  9. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/MatplotLibAPI/Pivot.py +0 -0
  10. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/MatplotLibAPI/StyleTemplate.py +0 -0
  11. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/MatplotLibAPI/Table.py +0 -0
  12. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/MatplotLibAPI/Timeserie.py +0 -0
  13. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/MatplotLibAPI/Treemap.py +0 -0
  14. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/MatplotLibAPI.egg-info/SOURCES.txt +0 -0
  15. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/MatplotLibAPI.egg-info/dependency_links.txt +0 -0
  16. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/MatplotLibAPI.egg-info/requires.txt +0 -0
  17. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/MatplotLibAPI.egg-info/top_level.txt +0 -0
  18. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/README.md +0 -0
  19. {matplotlibapi-3.2.10 → matplotlibapi-3.2.12}/setup.cfg +0 -0
@@ -181,16 +181,16 @@ def plot_composite_treemap(pd_dfs: Dict[str, pd.DataFrame],
181
181
  vertical_spacing=0.2
182
182
  )
183
183
 
184
- current_row = 1
185
- for path, df in pd_dfs.items():
186
- trm = aplot_treemap(pd_df=df,
187
- path=path,
188
- values=values,
189
- style=style,
190
- color=color,
191
- sort_by=sort_by,
192
- ascending=ascending,
193
- max_values=max_values)
194
- fig.add_trace(trm, row=current_row, col=1)
195
- current_row += 1
196
- return fig
184
+ current_row = 1
185
+ for path, df in pd_dfs.items():
186
+ trm = aplot_treemap(pd_df=df,
187
+ path=path,
188
+ values=values,
189
+ style=style,
190
+ color=color,
191
+ sort_by=sort_by,
192
+ ascending=ascending,
193
+ max_values=max_values)
194
+ fig.add_trace(trm, row=current_row, col=1)
195
+ current_row += 1
196
+ return fig
@@ -91,7 +91,8 @@ class DataFrameAccessor:
91
91
  max_values: int = 100,
92
92
  center_to_mean: bool = False,
93
93
  sort_by: Optional[str] = None,
94
- ascending: bool = False) -> Figure:
94
+ ascending: bool = False,
95
+ table_rows:int=10) -> Figure:
95
96
 
96
97
  return plot_composite_bubble(pd_df=self._obj,
97
98
  label=label,
@@ -103,7 +104,8 @@ class DataFrameAccessor:
103
104
  max_values=max_values,
104
105
  center_to_mean=center_to_mean,
105
106
  sort_by=sort_by,
106
- ascending=ascending)
107
+ ascending=ascending,
108
+ table_rows=table_rows)
107
109
 
108
110
  def aplot_table(self,
109
111
  cols: List[str],
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: MatplotLibAPI
3
- Version: 3.2.10
3
+ Version: 3.2.12
4
4
  Requires-Python: >=3.7
5
5
  Description-Content-Type: text/markdown
6
6
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: MatplotLibAPI
3
- Version: 3.2.10
3
+ Version: 3.2.12
4
4
  Requires-Python: >=3.7
5
5
  Description-Content-Type: text/markdown
6
6
  License-File: LICENSE
@@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]
3
3
  build-backend = "setuptools.build_meta"
4
4
  [project]
5
5
  name = "MatplotLibAPI"
6
- version="v3.2.10"
6
+ version="v3.2.12"
7
7
  readme = "README.md"
8
8
  requires-python=">=3.7"
9
9
  dependencies = ["pandas","matplotlib","networkx","plotly","seaborn","scikit-learn","kaleido","nbformat"]
File without changes
File without changes
File without changes