I cannot understand this:
f <- c("2014-11-10","2014-11-11")
is.vector(f)
[1] TRUE
is.vector(as.Date(f))
[1] FALSE <------------- WTF?!!!
str(as.Date(f))
Date[1:2], format: "2014-11-10" "2014-11-11"
str(f)
chr [1:2] "2014-11-10" "2014-11-11"
why isn't as.Date(f)
a vector?!