Reputation: 111
I am trying to delete the rows with NA elements in a data frame by doing the following:
cleaned_data <- data[complete.cases(data),]
However, I am still getting the same data frame without any row being removed. I am running the 3.2.1 R version for OS X 10.10.3. Here is the data:
> dput(data)
structure(list(`1` = structure(c(1L, 1L, 6L, 3L, 3L), .Label = c("1",
"2", "3", "4", "5", "NA"), class = "factor"), `2` = structure(c(5L,
5L, 7L, 2L, 2L), .Label = c("1", "2", "3", "4", "5", "6", "NA"
), class = "factor"), `3` = structure(c(34L, 46L, 66L, 51L, 28L
), .Label = c("0", "1", "10", "100", "105", "11", "110", "112",
"12", "120", "14", "15", "16", "168", "18", "2", "20", "200",
"21", "22", "24", "25", "26", "27", "28", "29", "3", "30", "31",
"32", "35", "36", "4", "40", "41", "42", "42099", "42131", "42134",
"42197", "42292", "45", "48", "49", "5", "50", "54", "55", "56",
"6", "60", "64", "65", "7", "70", "72", "75", "77", "8", "80",
"82", "84", "85", "9", "90", "NA"), class = "factor"), `4` = structure(c(1L,
2L, 1L, 2L, 1L), .Label = c("0", "1", "NA"), class = "factor"),
`5` = structure(c(1L, 1L, 1L, 1L, 1L), .Label = c("0", "1",
"NA"), class = "factor"), `6` = structure(c(1L, 2L, 1L, 1L,
1L), .Label = c("0", "1", "NA"), class = "factor"), `7` = structure(c(2L,
2L, 1L, 1L, 1L), .Label = c("0", "1", "NA"), class = "factor"),
`8` = structure(c(1L, 1L, 1L, 1L, 1L), .Label = c("0", "1",
"NA"), class = "factor"), `9` = structure(c(1L, 1L, 1L, 1L,
2L), .Label = c("0", "1", "NA"), class = "factor")), .Names = c("1",
"2", "3", "4", "5", "6", "7", "8", "9"), row.names = c(NA, 5L
), class = "data.frame")
Upvotes: 3
Views: 1947
Reputation: 27183
Those aren't true NA
s, they are strings or factors that happen to be "NA"
. You can turn them into real NAs:
data[data=="NA"] <- NA
Upvotes: 3