我有时间存储在" HH:MM"格式化为字符串(str13),但不知何故不能通过以下方法将它们转换为Stata内部格式(它生成缺失值):
gen double time2 = clock(time, "HHMM")
转换的正确方法是什么?" HH:MM"字符串到Stata内部格式(SIF)?
答案 0 :(得分:2)
输入格式的编码与输出格式的编码方式不同。
. set obs 1
number of observations (_N) was 0, now 1
. generate double t = clock("14:05","hm")
. format t %tcHH:MM
. list, clean noobs
t
14:05