pandas-plots 0.15.12__tar.gz → 0.15.13__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.15.12 → pandas_plots-0.15.13}/PKG-INFO +1 -1
- {pandas_plots-0.15.12 → pandas_plots-0.15.13}/pyproject.toml +1 -1
- {pandas_plots-0.15.12 → pandas_plots-0.15.13}/src/pandas_plots/tbl.py +2 -3
- {pandas_plots-0.15.12 → pandas_plots-0.15.13}/README.md +0 -0
- {pandas_plots-0.15.12 → pandas_plots-0.15.13}/src/pandas_plots/__init__.py +0 -0
- {pandas_plots-0.15.12 → pandas_plots-0.15.13}/src/pandas_plots/hlp.py +0 -0
- {pandas_plots-0.15.12 → pandas_plots-0.15.13}/src/pandas_plots/pls.py +0 -0
- {pandas_plots-0.15.12 → pandas_plots-0.15.13}/src/pandas_plots/ven.py +0 -0
@@ -112,7 +112,7 @@ def describe_df(
|
|
112
112
|
df=df,
|
113
113
|
caption="dataframe",
|
114
114
|
use_plot=True,
|
115
|
-
renderer=
|
115
|
+
renderer=None,
|
116
116
|
template="plotly",
|
117
117
|
fig_cols=3,
|
118
118
|
fig_offset=None,
|
@@ -264,7 +264,7 @@ def describe_df(
|
|
264
264
|
)
|
265
265
|
|
266
266
|
fig.show(
|
267
|
-
renderer,
|
267
|
+
renderer=renderer or os.getenv("RENDERER"),
|
268
268
|
width=fig_width * fig_cols, # <-- Set width here
|
269
269
|
height=fig_rowheight * fig_rows, # <-- Set height here
|
270
270
|
)
|
@@ -273,7 +273,6 @@ def describe_df(
|
|
273
273
|
import missingno as msno
|
274
274
|
msno.matrix(df_, figsize=missing_figsize)
|
275
275
|
|
276
|
-
|
277
276
|
def pivot_df(
|
278
277
|
df: pd.DataFrame,
|
279
278
|
dropna: bool = False,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|