I'm new to pandas and I'm having problem with row selections from dataframe.
Following is my DataFrame :
Index Column1 Column2 Column3 Column4
0 1234 500 NEWYORK NY
1 5678 700 AUSTIN TX
2 1234 300 NEWYORK NY
3 8910 235 RICHMOND FL
I want to select rows that are having same value in column1,column 3 and column4(identical rows in terms of these 3 columns). So the output dataframe will contain rows with index 0 and 2.
Can any one help me with a step-by-step procedure for this custom selection.