|
85 | 85 | index_col : int, list of ints, default None
|
86 | 86 | Column (0-indexed) to use as the row labels of the DataFrame.
|
87 | 87 | Pass None if there is no such column. If a list is passed,
|
88 |
| - those columns will be combined into a ``MultiIndex`` |
| 88 | + those columns will be combined into a ``MultiIndex``. If a |
| 89 | + subset of data is selected with ``parse_cols``, index_col |
| 90 | + is based on the subset. |
89 | 91 | names : array-like, default None
|
90 | 92 | List of column names to use. If file contains no header row,
|
91 | 93 | then you should explicitly pass header=None
|
|
96 | 98 | content.
|
97 | 99 | dtype : Type name or dict of column -> type, default None
|
98 | 100 | Data type for data or columns. E.g. {'a': np.float64, 'b': np.int32}
|
99 |
| - Use `str` or `object` to preserve and not interpret dtype. |
| 101 | + Use `object` to preserve data as stored in Excel and not interpret dtype. |
100 | 102 | If converters are specified, they will be applied INSTEAD
|
101 | 103 | of dtype conversion.
|
102 | 104 |
|
|
116 | 118 | * If None then parse all columns,
|
117 | 119 | * If int then indicates last column to be parsed
|
118 | 120 | * If list of ints then indicates list of column numbers to be parsed
|
119 |
| - * If string then indicates comma separated list of column names and |
120 |
| - column ranges (e.g. "A:E" or "A,C,E:F") |
| 121 | + * If string then indicates comma separated list of Excel column letters and |
| 122 | + column ranges (e.g. "A:E" or "A,C,E:F"). Ranges are inclusive of |
| 123 | + both sides. |
121 | 124 | squeeze : boolean, default False
|
122 | 125 | If the parsed data only contains one column then return a Series
|
123 | 126 | na_values : scalar, str, list-like, or dict, default None
|
|
0 commit comments