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.
- {pandas_plots-0.11.14/src/pandas_plots.egg-info → pandas_plots-0.11.15}/PKG-INFO +2 -2
- {pandas_plots-0.11.14 → pandas_plots-0.11.15}/setup.cfg +2 -2
- {pandas_plots-0.11.14 → pandas_plots-0.11.15}/src/pandas_plots/tbl.py +10 -9
- {pandas_plots-0.11.14 → pandas_plots-0.11.15/src/pandas_plots.egg-info}/PKG-INFO +2 -2
- {pandas_plots-0.11.14 → pandas_plots-0.11.15}/src/pandas_plots.egg-info/requires.txt +1 -1
- {pandas_plots-0.11.14 → pandas_plots-0.11.15}/LICENSE +0 -0
- {pandas_plots-0.11.14 → pandas_plots-0.11.15}/README.md +0 -0
- {pandas_plots-0.11.14 → pandas_plots-0.11.15}/pyproject.toml +0 -0
- {pandas_plots-0.11.14 → pandas_plots-0.11.15}/src/pandas_plots/hlp.py +0 -0
- {pandas_plots-0.11.14 → pandas_plots-0.11.15}/src/pandas_plots/pii.py +0 -0
- {pandas_plots-0.11.14 → pandas_plots-0.11.15}/src/pandas_plots/pls.py +0 -0
- {pandas_plots-0.11.14 → pandas_plots-0.11.15}/src/pandas_plots/ven.py +0 -0
- {pandas_plots-0.11.14 → pandas_plots-0.11.15}/src/pandas_plots.egg-info/SOURCES.txt +0 -0
- {pandas_plots-0.11.14 → pandas_plots-0.11.15}/src/pandas_plots.egg-info/dependency_links.txt +0 -0
- {pandas_plots-0.11.14 → pandas_plots-0.11.15}/src/pandas_plots.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pandas-plots
|
3
|
-
Version: 0.11.
|
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
|
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.
|
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
|
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
|
-
#
|
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
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
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.
|
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
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{pandas_plots-0.11.14 → pandas_plots-0.11.15}/src/pandas_plots.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|