Skip to content

Commit 9df2302

Browse files
wip
1 parent dfe6216 commit 9df2302

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
@@ -522,6 +522,7 @@ def ecdf(
522522
line_shape="hv",
523523
ecdfnorm="probability",
524524
ecdfmode="standard",
525+
render_mode="auto",
525526
log_x=False,
526527
log_y=False,
527528
range_x=None,
@@ -579,7 +580,8 @@ def kde(
579580
marginal=None,
580581
opacity=None,
581582
orientation=None,
582-
bw_method=None, # TODO use this
583+
bw_method=None,
584+
render_mode="auto",
583585
log_x=False,
584586
log_y=False,
585587
range_x=None,
@@ -590,8 +592,8 @@ def kde(
590592
height=None,
591593
):
592594
"""
593-
In a Kernel Density Estimation (KDE) plot, rows of `data_frame`
594-
are used as inputs to a KDE smoothing function which is rendered as a line.
595+
In a Kernel Density Estimation (KDE) plot, rows of `data_frame` are used as inputs
596+
to a KDE smoothing function and a line is drawn with one point pre row of input.
595597
"""
596598
return make_figure(args=locals(), constructor=go.Scatter)
597599

0 commit comments

Comments
 (0)