I have a dataframe which has a column "Budget". I want to get all the rows from dataframe whose value corresponding to budget column is 0. I using this code:
dataFrameTrain.iloc[np.where(dataFrameTrain['budget']==0),:]
But, I am getting this exception:
IndexingError: Too many indexers