Skip to content

Commit 8bb3cf3

Browse files
committed
Refine docstrings
1 parent e3b0b5d commit 8bb3cf3

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

pandas/core/generic.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -10818,9 +10818,12 @@ def describe(
1081810818
----------
1081910819
percentiles : list-like of numbers, optional
1082010820
The percentiles to include in the output. All should
10821-
fall between 0 and 1. The default is
10822-
``[.25, .5, .75]``, which returns the 25th, 50th, and
10823-
75th percentiles.
10821+
fall between 0 and 1. Here are the options:
10822+
10823+
- A list-like of numbers : To include the percentiles listed. If
10824+
that list is empty, no percentiles will be returned.
10825+
- None (default) : To include the default percentiles, which are the
10826+
25th, 50th, and 75th ones.
1082410827
include : 'all', list-like of dtypes or None (default), optional
1082510828
A white list of data types to include in the result. Ignored
1082610829
for ``Series``. Here are the options:

0 commit comments

Comments
 (0)