File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -3675,6 +3675,10 @@ should be passed to ``index_col`` and ``header``:
3675
3675
3676
3676
os.remove(" path_to_file.xlsx" )
3677
3677
3678
+ Missing values in columns specified in ``index_col `` will be forward filled to
3679
+ allow roundtripping with ``to_excel `` for ``merged_cells=True ``. To avoid forward
3680
+ filling the missing values use ``set_index `` after reading the data instead of
3681
+ ``index_col ``.
3678
3682
3679
3683
Parsing specific columns
3680
3684
++++++++++++++++++++++++
Original file line number Diff line number Diff line change 119
119
those columns will be combined into a ``MultiIndex``. If a
120
120
subset of data is selected with ``usecols``, index_col
121
121
is based on the subset.
122
+
123
+ Missing values will be forward filled to allow roundtripping with
124
+ ``to_excel`` for ``merged_cells=True``. To avoid forward filling the
125
+ missing values use ``set_index`` after reading the data instead of
126
+ ``index_col``.
122
127
usecols : str, list-like, or callable, default None
123
128
* If None, then parse all columns.
124
129
* If str, then indicates comma separated list of Excel column letters
You can’t perform that action at this time.
0 commit comments