remove nan from dataframe r code example

Example 1: how to filter out all NaN values in pandas df

#return a subset of the dataframe where the column name value != NaN 
df.loc[df['column name'].isnull() == False]

Example 2: pandas drop row with nan

import pandas as pd

df = pd.DataFrame({'values_1': ['700','ABC','500','XYZ','1200'],
                   'values_2': ['DDD','150','350','400','5000'] 
                   })

df = df.apply (pd.to_numeric, errors='coerce')
df = df.dropna()
df = df.reset_index(drop=True)

print (df)

Example 3: how to remove nan in rstudio

x2 <- na.omit(x2)

Tags:

Misc Example