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