pandas-plots 0.11.14__tar.gz → 0.11.15__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.1
2
2
  Name: pandas-plots
3
- Version: 0.11.14
3
+ Version: 0.11.15
4
4
  Summary: A collection of helper for table handling and vizualization
5
5
  Home-page: https://github.com/smeisegeier/pandas-plots
6
6
  Author: smeisegeier
@@ -22,7 +22,7 @@ License-File: LICENSE
22
22
  Requires-Dist: pandas>=2.0.0
23
23
  Requires-Dist: plotly>=5.18.0
24
24
  Requires-Dist: matplotlib>=3.8.2
25
- Requires-Dist: matplotlib-venn>=0.11.10
25
+ Requires-Dist: matplotlib-venn==0.11.10
26
26
  Requires-Dist: seaborn>=0.13.2
27
27
  Requires-Dist: Jinja2>=3.1.4
28
28
  Requires-Dist: requests>=2.32.0
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = pandas-plots
3
- version = 0.11.14
3
+ version = 0.11.15
4
4
  author = smeisegeier
5
5
  author_email = dexterDSDo@googlemail.com
6
6
  description = A collection of helper for table handling and vizualization
@@ -28,7 +28,7 @@ install_requires =
28
28
  pandas >= 2.0.0
29
29
  plotly >= 5.18.0
30
30
  matplotlib >= 3.8.2
31
- matplotlib-venn >= 0.11.10
31
+ matplotlib-venn == 0.11.10
32
32
  seaborn >= 0.13.2
33
33
  Jinja2 >= 3.1.4
34
34
  requests >= 2.32.0
@@ -112,18 +112,19 @@ def describe_df(
112
112
  header = f"🟠 {col}({len(unis):_}|{df[col].dtype})"
113
113
  return unis, header
114
114
 
115
- # * show all columns
115
+ # hack this block somehow interferes with the plotly renderer. so its run even when use_columns=False
116
116
  if use_columns:
117
117
  print("--- column uniques (all)")
118
118
  print(f"🟠 index {wrap_text(df.index.tolist()[:top_n_uniques])}")
119
- for col in df.columns[:]:
120
- _u, _h = get_uniques_header(col)
121
- # * check col type
122
- is_str = df.loc[:, col].dtype.kind == "O"
123
- # * wrap output
124
- print(
125
- f"{_h} {wrap_text(_u[:top_n_uniques], max_items_in_line=70, use_apo=is_str)}"
126
- )
119
+ for col in df.columns[:]:
120
+ _u, _h = get_uniques_header(col)
121
+ # * check col type
122
+ is_str = df.loc[:, col].dtype.kind == "O"
123
+ # * wrap output
124
+ if use_columns:
125
+ print(
126
+ f"{_h} {wrap_text(_u[:top_n_uniques], max_items_in_line=70, use_apo=is_str)}"
127
+ )
127
128
 
128
129
  print("--- column stats (numeric)")
129
130
  # * only show numerics
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pandas-plots
3
- Version: 0.11.14
3
+ Version: 0.11.15
4
4
  Summary: A collection of helper for table handling and vizualization
5
5
  Home-page: https://github.com/smeisegeier/pandas-plots
6
6
  Author: smeisegeier
@@ -22,7 +22,7 @@ License-File: LICENSE
22
22
  Requires-Dist: pandas>=2.0.0
23
23
  Requires-Dist: plotly>=5.18.0
24
24
  Requires-Dist: matplotlib>=3.8.2
25
- Requires-Dist: matplotlib-venn>=0.11.10
25
+ Requires-Dist: matplotlib-venn==0.11.10
26
26
  Requires-Dist: seaborn>=0.13.2
27
27
  Requires-Dist: Jinja2>=3.1.4
28
28
  Requires-Dist: requests>=2.32.0
@@ -1,7 +1,7 @@
1
1
  pandas>=2.0.0
2
2
  plotly>=5.18.0
3
3
  matplotlib>=3.8.2
4
- matplotlib-venn>=0.11.10
4
+ matplotlib-venn==0.11.10
5
5
  seaborn>=0.13.2
6
6
  Jinja2>=3.1.4
7
7
  requests>=2.32.0
File without changes
File without changes