pandas-plots 0.12.28__tar.gz → 0.12.29__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.12.28/src/pandas_plots.egg-info → pandas_plots-0.12.29}/PKG-INFO +1 -1
- {pandas_plots-0.12.28 → pandas_plots-0.12.29}/setup.cfg +1 -1
- {pandas_plots-0.12.28 → pandas_plots-0.12.29}/src/pandas_plots/tbl.py +5 -0
- {pandas_plots-0.12.28 → pandas_plots-0.12.29/src/pandas_plots.egg-info}/PKG-INFO +1 -1
- {pandas_plots-0.12.28 → pandas_plots-0.12.29}/LICENSE +0 -0
- {pandas_plots-0.12.28 → pandas_plots-0.12.29}/README.md +0 -0
- {pandas_plots-0.12.28 → pandas_plots-0.12.29}/pyproject.toml +0 -0
- {pandas_plots-0.12.28 → pandas_plots-0.12.29}/src/pandas_plots/hlp.py +0 -0
- {pandas_plots-0.12.28 → pandas_plots-0.12.29}/src/pandas_plots/pls.py +0 -0
- {pandas_plots-0.12.28 → pandas_plots-0.12.29}/src/pandas_plots/ven.py +0 -0
- {pandas_plots-0.12.28 → pandas_plots-0.12.29}/src/pandas_plots.egg-info/SOURCES.txt +0 -0
- {pandas_plots-0.12.28 → pandas_plots-0.12.29}/src/pandas_plots.egg-info/dependency_links.txt +0 -0
- {pandas_plots-0.12.28 → pandas_plots-0.12.29}/src/pandas_plots.egg-info/pii.py +0 -0
- {pandas_plots-0.12.28 → pandas_plots-0.12.29}/src/pandas_plots.egg-info/requires.txt +0 -0
- {pandas_plots-0.12.28 → pandas_plots-0.12.29}/src/pandas_plots.egg-info/top_level.txt +0 -0
@@ -769,6 +769,11 @@ def print_summary(df: pd.DataFrame | pd.Series, show: bool = True, name: str=" "
|
|
769
769
|
|
770
770
|
# * drop NA to keep scipy sane
|
771
771
|
ser.dropna(inplace=True)
|
772
|
+
|
773
|
+
# * on empty series: return
|
774
|
+
if ser.empty:
|
775
|
+
print(f"{name} -> empty")
|
776
|
+
return
|
772
777
|
|
773
778
|
# Using the iqr function, we still calculate the bounds manually
|
774
779
|
q1 = round(stats.scoreatpercentile(ser, 25), precision)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{pandas_plots-0.12.28 → pandas_plots-0.12.29}/src/pandas_plots.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|