Can't get my head around the Pandas syntax for this. Here's some example data:
one two three id
12 34 561 13555
2 67 781 14777
34 12 90 13555
5 67 89 14777
I want to return columns one, two and id where the value in the id column is 13555. Want to select the columns by name, not position.
Output would look like this:
one two id
12 34 13555
34 12 13555