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 @@ -518,6 +518,7 @@ def ecdf(
518
518
line_shape = "hv" ,
519
519
ecdfnorm = "probability" ,
520
520
ecdfmode = "standard" ,
521
+ render_mode = "auto" ,
521
522
log_x = False ,
522
523
log_y = False ,
523
524
range_x = None ,
@@ -575,7 +576,8 @@ def kde(
575
576
marginal = None ,
576
577
opacity = None ,
577
578
orientation = None ,
578
- bw_method = None , # TODO use this
579
+ bw_method = None ,
580
+ render_mode = "auto" ,
579
581
log_x = False ,
580
582
log_y = False ,
581
583
range_x = None ,
@@ -586,8 +588,8 @@ def kde(
586
588
height = None ,
587
589
):
588
590
"""
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 .
591
593
"""
592
594
return make_figure (args = locals (), constructor = go .Scatter )
593
595
You can’t perform that action at this time.
0 commit comments