Skip to content
Merged

PX ECDF #3330

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
wip
  • Loading branch information
nicolaskruchten committed Aug 13, 2021
commit 9df2302c43f451c784d028cf51cd5532ffeb59c9
8 changes: 5 additions & 3 deletions packages/python/plotly/plotly/express/_chart_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -522,6 +522,7 @@ def ecdf(
line_shape="hv",
ecdfnorm="probability",
ecdfmode="standard",
render_mode="auto",
log_x=False,
log_y=False,
range_x=None,
Expand Down Expand Up @@ -579,7 +580,8 @@ def kde(
marginal=None,
opacity=None,
orientation=None,
bw_method=None, # TODO use this
bw_method=None,
render_mode="auto",
log_x=False,
log_y=False,
range_x=None,
Expand All @@ -590,8 +592,8 @@ def kde(
height=None,
):
"""
In a Kernel Density Estimation (KDE) plot, rows of `data_frame`
are used as inputs to a KDE smoothing function which is rendered as a line.
In a Kernel Density Estimation (KDE) plot, rows of `data_frame` are used as inputs
to a KDE smoothing function and a line is drawn with one point pre row of input.
"""
return make_figure(args=locals(), constructor=go.Scatter)

Expand Down