Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
AW: st: extract hours, minutes and seconds from date
From
"Martin Weiss" <[email protected]>
To
<[email protected]>
Subject
AW: st: extract hours, minutes and seconds from date
Date
Fri, 21 May 2010 12:55:54 +0200
<>
" Use -double-s throughout."
That was my knee-jerk reaction also. But this code leads to the same predicament:
*************
clear
drop _all
set obs 1
gen double time = clock("30dec1999 08:50:00", "DMYhms")
format time %tc
list
gen double hour = hhC(time)
gen double minute = mmC(time)
gen double sec = ssC(time)
list
*************
Omitting the "C", i.e. the leap second accounting, solved the problem for me, weirdly enough.
HTH
Martin
-----Ursprüngliche Nachricht-----
Von: [email protected] [mailto:[email protected]] Im Auftrag von Nick Cox
Gesendet: Freitag, 21. Mai 2010 12:39
An: [email protected]
Betreff: RE: st: extract hours, minutes and seconds from date
I guess Maarten is being bitten by precision here. By default he is getting just -float-s for the later -generate-s. Use -double-s throughout.
Nick
[email protected]
Maarten buis
--- On Fri, 21/5/10, raoul reulen wrote:
> I have a date variable that looks like this:
>
> 30dec1999 08:50:00
>
> and I want to extract the hour, minutes, and seconds part
> of it
I thought I had an answer, but in my case the minutes and
seconds part seems to be slightly off (49 minutes instead of
50, and 38 seconds instead of 0):
*---------------- begin example ------------------
clear
drop _all
set obs 1
gen double time = clock("30dec1999 08:50:00", "DMYhms")
format time %tc
list
gen hour = hhC(time)
gen minute = mmC(time)
gen sec = ssC(time)
list
*----------------- end example --------------------
Maybe somebody else can explain where these differences
come from.
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/