pandas-plots 0.11.16__tar.gz → 0.11.17__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.16/src/pandas_plots.egg-info → pandas_plots-0.11.17}/PKG-INFO +1 -1
- {pandas_plots-0.11.16 → pandas_plots-0.11.17}/setup.cfg +1 -1
- {pandas_plots-0.11.16 → pandas_plots-0.11.17}/src/pandas_plots/tbl.py +3 -0
- {pandas_plots-0.11.16 → pandas_plots-0.11.17/src/pandas_plots.egg-info}/PKG-INFO +1 -1
- {pandas_plots-0.11.16 → pandas_plots-0.11.17}/LICENSE +0 -0
- {pandas_plots-0.11.16 → pandas_plots-0.11.17}/README.md +0 -0
- {pandas_plots-0.11.16 → pandas_plots-0.11.17}/pyproject.toml +0 -0
- {pandas_plots-0.11.16 → pandas_plots-0.11.17}/src/pandas_plots/hlp.py +0 -0
- {pandas_plots-0.11.16 → pandas_plots-0.11.17}/src/pandas_plots/pii.py +0 -0
- {pandas_plots-0.11.16 → pandas_plots-0.11.17}/src/pandas_plots/pls.py +0 -0
- {pandas_plots-0.11.16 → pandas_plots-0.11.17}/src/pandas_plots/ven.py +0 -0
- {pandas_plots-0.11.16 → pandas_plots-0.11.17}/src/pandas_plots.egg-info/SOURCES.txt +0 -0
- {pandas_plots-0.11.16 → pandas_plots-0.11.17}/src/pandas_plots.egg-info/dependency_links.txt +0 -0
- {pandas_plots-0.11.16 → pandas_plots-0.11.17}/src/pandas_plots.egg-info/requires.txt +0 -0
- {pandas_plots-0.11.16 → pandas_plots-0.11.17}/src/pandas_plots.egg-info/top_level.txt +0 -0
@@ -643,6 +643,9 @@ def print_summary(df: pd.DataFrame | pd.Series, name: str="🟠 "):
|
|
643
643
|
# Calculate IQR and pass `rng=(25, 75)` to get the interquartile range
|
644
644
|
iqr_value = stats.iqr(ser)
|
645
645
|
|
646
|
+
# * drop NA to keep scipy sane
|
647
|
+
ser.dropna(inplace=True)
|
648
|
+
|
646
649
|
# Using the iqr function, we still calculate the bounds manually
|
647
650
|
q1 = stats.scoreatpercentile(ser, 25)
|
648
651
|
q3 = stats.scoreatpercentile(ser, 75)
|
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.16 → pandas_plots-0.11.17}/src/pandas_plots.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|