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.

link|improve this question

71% accept rate
1  
What does "not OK" mean? Why do you have the # in there? – gsk3 Aug 2 '11 at 10:23
feedback

1 Answer

up vote 4 down vote accepted

The date function converts dates expressed in days, months and years. For timestamps containing hours and seconds, you need the clock function. The new variable should be in double precision

gen double time_2 = clock(time,"DMYhms#")
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.