pandas how to remove row with certain value code example
Example 1: pandas drop rows with value in list
import pandas as pd
a = ['2015-01-01' , '2015-02-01']
df = pd.DataFrame(data={'date':['2015-01-01' , '2015-02-01', '2015-03-01' , '2015-04-01', '2015-05-01' , '2015-06-01']})
print(df)
df = df[~df['date'].isin(a)]
print(df)
Example 2: removing rows with specific column values from a dataframe
+---+--------------------------+----------------------------------+-----------+
| 1 | Sign up date | no_stores | no_unin_app no_stores_recei | ed_order |
+---+--------------------------+----------------------------------+-----------+
| 2 | 2020-04-01 | 1 | 0 | 0 |
| 3 | 2020-04-04 | 11 | 3 | 6 |
| 4 | 2020-04-13 | 8 | 1 | 4 |
+---+--------------------------+----------------------------------+-----------+