pandas-plots 0.11.21__tar.gz → 0.11.22__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.21/src/pandas_plots.egg-info → pandas_plots-0.11.22}/PKG-INFO +1 -1
- {pandas_plots-0.11.21 → pandas_plots-0.11.22}/setup.cfg +1 -1
- {pandas_plots-0.11.21 → pandas_plots-0.11.22}/src/pandas_plots/tbl.py +5 -2
- {pandas_plots-0.11.21 → pandas_plots-0.11.22/src/pandas_plots.egg-info}/PKG-INFO +1 -1
- {pandas_plots-0.11.21 → pandas_plots-0.11.22}/LICENSE +0 -0
- {pandas_plots-0.11.21 → pandas_plots-0.11.22}/README.md +0 -0
- {pandas_plots-0.11.21 → pandas_plots-0.11.22}/pyproject.toml +0 -0
- {pandas_plots-0.11.21 → pandas_plots-0.11.22}/src/pandas_plots/hlp.py +0 -0
- {pandas_plots-0.11.21 → pandas_plots-0.11.22}/src/pandas_plots/pii.py +0 -0
- {pandas_plots-0.11.21 → pandas_plots-0.11.22}/src/pandas_plots/pls.py +0 -0
- {pandas_plots-0.11.21 → pandas_plots-0.11.22}/src/pandas_plots/ven.py +0 -0
- {pandas_plots-0.11.21 → pandas_plots-0.11.22}/src/pandas_plots.egg-info/SOURCES.txt +0 -0
- {pandas_plots-0.11.21 → pandas_plots-0.11.22}/src/pandas_plots.egg-info/dependency_links.txt +0 -0
- {pandas_plots-0.11.21 → pandas_plots-0.11.22}/src/pandas_plots.egg-info/requires.txt +0 -0
- {pandas_plots-0.11.21 → pandas_plots-0.11.22}/src/pandas_plots.egg-info/top_level.txt +0 -0
@@ -123,10 +123,13 @@ def describe_df(
|
|
123
123
|
print(f"🟣 shape: ({df.shape[0]:_}, {df.shape[1]}) columns: {np.array(df.columns)} ")
|
124
124
|
# print(f"🟣 shape: ({df.shape[0]:_}, {df.shape[1]}) columns: {df.columns.tolist()} ")
|
125
125
|
print(f"🟣 duplicates: {df.duplicated().sum():_}")
|
126
|
-
print(f"🟣 uniques: {
|
126
|
+
print(f"🟣 uniques: {wrap_text(str({col: f'{df[col].nunique():_}' for col in df})) }")
|
127
|
+
# print(f"🟣 uniques: { {col: f'{df[col].nunique():_}' for col in df} }")
|
127
128
|
# print(f"🟣 uniques: {{ {', '.join(f'{col}: {df[col].nunique():_}' for col in df)} }}")
|
128
|
-
print(f"🟣 missings: {
|
129
|
+
print(f"🟣 missings: {wrap_text(str({col: f'{df[col].isna().sum():_}' for col in df})) }")
|
130
|
+
# print(f"🟣 missings: { {col: f'{df[col].isna().sum():_}' for col in df} }")
|
129
131
|
# print(f"🟣 missings: {dict(df.isna().sum())}")
|
132
|
+
|
130
133
|
|
131
134
|
def get_uniques_header(col: str):
|
132
135
|
# * sorting has issues when col is of mixed type (object)
|
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.21 → pandas_plots-0.11.22}/src/pandas_plots.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|