File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 70
70
71
71
usecols : int, str, list-like, or callable default None
72
72
Return a subset of the columns.
73
+
73
74
* If None, then parse all columns.
74
75
* If int, then indicates last column to be parsed.
75
76
76
- .. deprecated:: 0.24.0
77
- Pass in a list of int instead from 0 to `usecols` inclusive.
77
+ .. deprecated:: 0.24.0
78
+ Pass in a list of int instead from 0 to `usecols` inclusive.
78
79
79
80
* If str, then indicates comma separated list of Excel column letters
80
81
and column ranges (e.g. "A:E" or "A,C,E:F"). Ranges are inclusive of
81
82
both sides.
82
83
* If list of int, then indicates list of column numbers to be parsed.
83
84
* If list of string, then indicates list of column names to be parsed.
84
85
85
- .. versionadded:: 0.24.0
86
+ .. versionadded:: 0.24.0
86
87
87
88
* If callable, then evaluate each column name against it and parse the
88
89
column if the callable returns ``True``.
89
90
90
- .. versionadded:: 0.24.0
91
+ .. versionadded:: 0.24.0
91
92
92
93
squeeze : bool, default False
93
94
If the parsed data only contains one column then return a Series.
You can’t perform that action at this time.
0 commit comments