0

Is there a way to remove NA from the vector

> asd <- c(NA, "dfd","Dfd")
> asd
[1] NA    "dfd" "Dfd"
> is.na(asd)
[1]  TRUE FALSE FALSE

Expected output

new_asd
[1] "dfd" "Dfd"
manu p
  • 575
  • 1
  • 7

0 Answers0