I have a csv file which I have read with pandas. It contains a list of houses sold in Mumbai, with details like price, location, area etc. It looks like this:
Price Area Location ... Gas_Connection Jogging_Track Swimming_Pool
0 4850000 720 Kharghar ... False False False
1 4500000 600 Kharghar ... False True True
2 6700000 650 Kharghar ... False True True
3 4500000 650 Kharghar ... False False False
4 5000000 665 Kharghar ... False False False
I want to perform operations on prices of houses in a particular locality. I there a way to use the prices of only the rows with Khargar as its locality? Just for some context there are about 6,500 entries in the df.
Thanks...