how to remove rows with na in python code example
Example 1: how to delete na values in a dataframe
# if you want to delete rows containing NA values
df.dropna(inplace=True)
Example 2: python remove nan rows
df = df[df['my_var'].notna()]
# if you want to delete rows containing NA values
df.dropna(inplace=True)
df = df[df['my_var'].notna()]