remove rows with missing values pandas code example
Example 1: drop rows with any missing value
df.dropna(axis=0, how='any', inplace=True)
Example 2: drop null rows pandas
df.dropna()
Example 3: dropping nan in pandas dataframe
df.dropna(subset=['name', 'born'])
Example 4: drop missing values in a column pandas
df = df[pd.notnull(df['RespondentID'])]
# Drop the missing value present in the "RespondentID" column