pandas-plots 0.12.26__tar.gz → 0.12.27__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pandas-plots
3
- Version: 0.12.26
3
+ Version: 0.12.27
4
4
  Summary: A collection of helper for table handling and visualization
5
5
  Home-page: https://github.com/smeisegeier/pandas-plots
6
6
  Author: smeisegeier
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = pandas-plots
3
- version = 0.12.26
3
+ version = 0.12.27
4
4
  author = smeisegeier
5
5
  author_email = dexterDSDo@googlemail.com
6
6
  description = A collection of helper for table handling and visualization
@@ -1268,7 +1268,8 @@ def plot_boxes(
1268
1268
 
1269
1269
  fig.show("png")
1270
1270
  if summary:
1271
- print_summary(df=df, precision=precision)
1271
+ # * sort df by first column
1272
+ print_summary(df=df.sort_values(df.columns[0]), precision=precision)
1272
1273
 
1273
1274
  # * save to png if path is provided
1274
1275
  if png_path is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pandas-plots
3
- Version: 0.12.26
3
+ Version: 0.12.27
4
4
  Summary: A collection of helper for table handling and visualization
5
5
  Home-page: https://github.com/smeisegeier/pandas-plots
6
6
  Author: smeisegeier
File without changes
File without changes