suppose i have a DataFrame like this
_data=pd.DataFrame({
'name':['sam','kalrx','mark','ru']
})
and if i want to filter the dataframe with two names, then how can i do it
_data.where(_data=='sam' and 'mark')
suppose i have a DataFrame like this
_data=pd.DataFrame({
'name':['sam','kalrx','mark','ru']
})
and if i want to filter the dataframe with two names, then how can i do it
_data.where(_data=='sam' and 'mark')