I have a dataframe with say some investment data. I need to extract data from this dataframe based on certain conditions like say funding_type. There are many funding_types available I just need to extract data matching particular fund types.
e.g: funding_type has values venture,seed,angel,equity and so on. I just need data matching funding type say seed and angel
I tried out following
MF1[MF1['funding_round_type']=='seed']
here MF1 is my dataframe. This gives all the data related to seed fund type
I need condition somewhat like
MF1[MF1['funding_round_type']=='seed' and MF1['funding_round_type']=='angel']
But pandas doesnt allow it.
Any clues?