delete row in r code example
Example 1: r remove row dataframe
myData[-c(2, 4, 6), ] # remove rows 2, 4, 6
Example 2: r remove row names
rownames(data) <- c()
myData[-c(2, 4, 6), ] # remove rows 2, 4, 6
rownames(data) <- c()