From 98a014331b7097d8c76fc2b88f64636d73ea1410 Mon Sep 17 00:00:00 2001 From: Debmalya Pramanik Date: Tue, 24 Dec 2024 11:30:58 +0530 Subject: [PATCH] Fix typo in docstring, add space Co-authored-by: Asish Mahapatra --- pandas/core/methods/describe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/methods/describe.py b/pandas/core/methods/describe.py index 1587fc0a4add0..fa53af4c2bac9 100644 --- a/pandas/core/methods/describe.py +++ b/pandas/core/methods/describe.py @@ -74,7 +74,7 @@ def describe_ndframe( percentiles : list-like of numbers, optional The percentiles to include in the output. All should fall between 0 and 1. The default is ``[.25, .5, .75]``, which returns the 25th, 50th, and - 75th percentiles.If a blank list is passed, then returns only the + 75th percentiles. If a blank list is passed, then returns only the 50th percentile value. Returns