r dplyr remove change na and remove the first 3 rows 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 read.table() r
all_data <- all_data[complete.cases(all_data[, 'Ground_Tru'])]