I have a date with a format like below, and I use R to convert it from string to date
date <- "20 Nov 2010 21:44:00:000"
strptime(date,"%d %b %Y %H:%M:%S")
I want to do it in STATA, but how?
I tried this in STATA:
gen time_2 = date(time,"DMYhms#")
But it's not OK, why is that? Thanks.