File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
packages/python/plotly/plotly/express Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -522,6 +522,7 @@ def ecdf(
522
522
line_shape = "hv" ,
523
523
ecdfnorm = "probability" ,
524
524
ecdfmode = "standard" ,
525
+ render_mode = "auto" ,
525
526
log_x = False ,
526
527
log_y = False ,
527
528
range_x = None ,
@@ -579,7 +580,8 @@ def kde(
579
580
marginal = None ,
580
581
opacity = None ,
581
582
orientation = None ,
582
- bw_method = None , # TODO use this
583
+ bw_method = None ,
584
+ render_mode = "auto" ,
583
585
log_x = False ,
584
586
log_y = False ,
585
587
range_x = None ,
@@ -590,8 +592,8 @@ def kde(
590
592
height = None ,
591
593
):
592
594
"""
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 .
595
597
"""
596
598
return make_figure (args = locals (), constructor = go .Scatter )
597
599
You can’t perform that action at this time.
0 commit comments