drop na in r code example
Example 1: r remove na from dataset
new_df <- na.omit(df, c("myvar1", "myvar2")) # Remove NA on specific variables
Example 2: remove line with na r
# remove na in r - remove rows - na.omit function / option
ompleterecords <- na.omit(datacollected)
Example 3: drop na in R
> final[complete.cases(final), ]
gene hsap mmul mmus rnor cfam
2 ENSG00000199674 0 2 2 2 2
6 ENSG00000221312 0 1 2 3 2