We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aa4aa9 commit a09df36Copy full SHA for a09df36
pandas/io/parsers.py
@@ -101,7 +101,8 @@
101
be positional (i.e. integer indices into the document columns) or strings
102
that correspond to column names provided either by the user in `names` or
103
inferred from the document header row(s). For example, a valid array-like
104
- `usecols` parameter would be [0, 1, 2] or ['foo', 'bar', 'baz'].
+ `usecols` parameter would be [0, 1, 2] or ['foo', 'bar', 'baz']. Element
105
+ order is ignored, so usecols=[1,0] is the same as [0,1].
106
107
If callable, the callable function will be evaluated against the column
108
names, returning names where the callable function evaluates to True. An
0 commit comments