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(
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
You can’t perform that action at this time.
0 commit comments