I am working with survey data loaded from an h5-file as hdf = pandas.HDFStore('Survey.h5')
through the pandas package. Within this DataFrame
, all rows are the results of a single survey, whereas the columns are the answers for all questions within a single survey.
I am aiming to reduce this dataset to a smaller DataFrame
including only the rows with a certain depicted answer on a certain question, i.e. with all the same value in this column. I am able to determine the index values of all rows with this condition, but I can't find how to delete this rows or make a new df with these rows only.