Often the data we have collected in R has empty rows or has some rows which have the interesting or mandatory columns missing or NA.
To remove such rows from your data run the following:
To remove such rows from your data run the following:
myDF <- myDF[!is.na(studentData$RollNo),]
No comments:
Post a Comment