Skip to content

Commit edc4363

Browse files
wip
1 parent a603336 commit edc4363

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

packages/python/plotly/plotly/express/_chart_types.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,7 @@ def ecdf(
518518
line_shape="hv",
519519
ecdfnorm="probability",
520520
ecdfmode="standard",
521+
render_mode="auto",
521522
log_x=False,
522523
log_y=False,
523524
range_x=None,
@@ -575,7 +576,8 @@ def kde(
575576
marginal=None,
576577
opacity=None,
577578
orientation=None,
578-
bw_method=None, # TODO use this
579+
bw_method=None,
580+
render_mode="auto",
579581
log_x=False,
580582
log_y=False,
581583
range_x=None,
@@ -586,8 +588,8 @@ def kde(
586588
height=None,
587589
):
588590
"""
589-
In a Kernel Density Estimation (KDE) plot, rows of `data_frame`
590-
are used as inputs to a KDE smoothing function which is rendered as a line.
591+
In a Kernel Density Estimation (KDE) plot, rows of `data_frame` are used as inputs
592+
to a KDE smoothing function and a line is drawn with one point pre row of input.
591593
"""
592594
return make_figure(args=locals(), constructor=go.Scatter)
593595

0 commit comments

Comments
 (0)