I have a dataframe in which there is a column "status" I try to delete all rows in which "status" columns contains None value.
I did like this :
oppty_oppline.dropna(subset = ['status'])
But The "None" values wasn't deleted . I verify like this :
oppty_oppline.status.unique()
Result :
array(['Cancelled by ', 'Cancelled by Customer',
'Account not selected', None,
'Won - Deliver & Validate by ', 'Lost',
'Won - Deliver & Validate by Partner',
'Won-Deliver&Validate by ',
'Cancelled by ', 'Won by another',
'Won- Deliver and Validate by Partner',
'Won – Deliver & Validate by Partner'], dtype=object)
I see that 'None' values is not considered as a string .
Any idea please to help me?
Thanks you