Skip to content

Commit 40bf0e9

Browse files
committed
DOC: inline docstrings for read_excel with additional formatting.
1 parent f7b18a3 commit 40bf0e9

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

pandas/io/excel/_base.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -243,11 +243,9 @@ def read_excel(
243243
those columns will be combined into a ``MultiIndex``. If a
244244
subset of data is selected with ``usecols``, index_col
245245
is based on the subset.
246-
247-
Missing values will be forward filled to allow roundtripping with
248-
``to_excel`` for ``merged_cells=True``. To avoid forward filling the
249-
missing values use ``set_index`` after reading the data instead of
250-
``index_col``.
246+
Missing values will be forward filled to allow roundtripping with ``to_excel``
247+
for ``merged_cells=True``. To avoid forward filling the missing values use
248+
``set_index`` after reading the data instead of ``index_col``.
251249
usecols : str, list-like, or callable, default None
252250
* If None, then parse all columns.
253251
* If str, then indicates comma separated list of Excel column letters
@@ -328,8 +326,8 @@ def read_excel(
328326
329327
na_filter : bool, default True
330328
Detect missing value markers (empty strings and the value of na_values). In
331-
data without any NAs, passing ``na_filter=False`` can improve the
332-
performance of reading a large file.
329+
data without any NAs, passing ``na_filter=False`` can improve the performance
330+
of reading a large file.
333331
verbose : bool, default False
334332
Indicate number of NA values placed in non-numeric columns.
335333
parse_dates : bool, list-like, or dict, default False

0 commit comments

Comments
 (0)