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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pandas-plots
3
- Version: 0.15.12
3
+ Version: 0.15.13
4
4
  Summary: A collection of helper for table handling and visualization
5
5
  Keywords: tables,pivot,plotly,venn,plot,vizualization
6
6
  Author: smeisegeier
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pandas-plots"
3
- version = "0.15.12"
3
+ version = "0.15.13"
4
4
  description = "A collection of helper for table handling and visualization"
5
5
  long_description = "file: README.md"
6
6
  long_description_content_type = "text/markdown"
@@ -112,7 +112,7 @@ def describe_df(
112
112
  df=df,
113
113
  caption="dataframe",
114
114
  use_plot=True,
115
- renderer="png",
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