Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
11 changes: 6 additions & 5 deletions doc/helpdb.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6611,11 +6611,12 @@ popdisplay(d::Display)

("Base","median","median(v; checknan::Bool=true)

Compute the median of a vector \"v\". If keyword argument
\"checknan\" is true (the default), an error is raised for data
containing NaN values. Note: Julia does not ignore \"NaN\" values
in the computation. For applications requiring the handling of
missing data, the \"DataArray\" package is recommended.
Compute the median of a vector \"v\". If the keyword argument
\"checknan\" is true (the default), \"NaN\" is returned if the data
contains any \"NaN\" values. If \"checknan\" is false, then \"NaN\"
values are included in the computation. Note: Because Julia does not
ignore \"NaN\" values, the \"DataArray\" package is recommended for
applications that must handle missing data.

"),

Expand Down
11 changes: 6 additions & 5 deletions doc/stdlib/base.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4563,11 +4563,12 @@ Statistics

.. function:: median(v; checknan::Bool=true)

Compute the median of a vector ``v``. If keyword argument ``checknan`` is true
(the default), an error is raised for data containing NaN values.
Note: Julia does not ignore ``NaN`` values in the computation.
For applications requiring the handling of missing data, the ``DataArray``
package is recommended.
Compute the median of a vector \"v\". If the keyword argument
\"checknan\" is true (the default), \"NaN\" is returned if the data
contains any \"NaN\" values. If \"checknan\" is false, then \"NaN\"
values are included in the computation. Note: Because Julia does not
ignore \"NaN\" values, the \"DataArray\" package is recommended for
applications that must handle missing data.

.. function:: median!(v; checknan::Bool=true)

Expand Down