how to remove na values in r data frame

29

new_df <- na.omit(df, c("myvar1", "myvar2")) # Remove NA on specific variables

Comments

Submit
0 Comments