I am trying to incorporate date in a column. But it is returning number since NA is present. Can anyone help me?
asdd <- data.frame(a = c(NA,as.Date(today(),"%m/%d/%Y")), b = c(2,3))
asdd
a b
1 NA 2
2 19220 3
i want get as Date in the column?