Bookmark and Share

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]

RE: st: best practice for dates and times


From   Nick Cox <[email protected]>
To   "'[email protected]'" <[email protected]>
Subject   RE: st: best practice for dates and times
Date   Mon, 21 Feb 2011 18:08:40 +0000

True. But it remains the case that -replace- knows nothing about -clock()-. It looks at the values and works out what the type should be, within limits. 

The inhibition about promoting from -float- to -double- I think follows from the rest of what Stata does here, as otherwise many if not most -float-s would morph into -double-s sooner or later, which, modulo views expressed earlier, would not match most intentions. 

Nick 
[email protected] 

Liao, Junlin

If I understand Nick correctly, the functions will always do what they do, with double precision. It's the -gen- command finally did the trick to record numbers inaccurately. I expanded on Joseph's findings:

set type float
clear
set obs 1
gen byte x=1
replace x=clock("1may2001 12:34","DMY hm")

Interestingly, -replace- does convert the variable from byte (you can try any other numeric types other than float) to double, not float. However, if the variable is float to begin with, it will not be promoted to double.

-replace- command is much smarter than -gen-. If you operate with date, it started with byte, it will figure out the most efficient way to store the data: when int is sufficient, it will not choose long, or if the date is large, it will choose long, not float or double.

Nick Cox

I note these evident inconsistencies as questions for StataCorp.

Otherwise, we need to be clear here about the difference between functions such as -clock()- and commands such as -generate-.

I don't think this request matches the way functions work. They just take inputs (in most cases) and produce outputs. I don't think that there is any sense in which they know about any wider context, as for example being part of a -generate- or -replace- command. Part of the magic of computing follows from very strong division of labour like this.

I think what you and Junlin are asking is that -generate- (and -replace-) be smarter when the expression they are fed contains a call to e.g. -clock()-. That's a different request. My only bet is that this is much trickier than it seems, in principle as well as in practice. For example, even if -clock()- is part of the expression, it doesn't always follow that the user wants a -double- variable as a result. The spirit of the request is understandable, but I think there is a slippery slope ahead.

Joseph Coveney

I'm inclined to agree with Junlin on this.  The user has to supply a mask for the date-time data as the second argument.  It seems to me that the function should be able to determine from that information whether double-precision is needed, whether single-precision will be adequate, and even when integer will suffice.

Stata is not entirely consistent in automatically detecting and setting the proper storage type.  For example, back on the earlier thread, typing -generate y = 83085733- won't set the data type to the necessary precision, but opening the data editor and pasting 83085733 into the first cell and closing
*does* set the data type to long.

And, typing -generate float y = 1- and then -replace y = 83085733- won't automatically promote the data type to accommodate the larger value.  On the other hand, first entering -generate byte y = 1- and then -replace y = 83085733-

does.

Junlin Liao wrote:

. . . I thought -clock- or -Clock- would be smart enough to figure it out by
itself.   . . . I think there again is a chance for Stata to get smart.


*
*   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/


© Copyright 1996–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index