r - remove NA from a coulm code example
Example: r - remove NA from a coulm
df <- data.frame(x = c(1, 2, 3), y = c(0, 10, NA), z=c(NA, 33, 22))
subset(df, !is.na(y))
df <- data.frame(x = c(1, 2, 3), y = c(0, 10, NA), z=c(NA, 33, 22))
subset(df, !is.na(y))