我正在尝试将写为“11jun1965”的出生年份转换为 Stata 中的年龄变量使用以下代码,我无法生成当前年龄

问题描述

我使用了以下代码,但得到的只是“.”适用于所有年龄段

domain_hint

解决方法

做出了很多假设,因为您没有包含很多关于您拥有的数据格式的详细信息,而不是您想要的年龄格式,但是您应该能够修改此代码以使其工作:

* Example generated by -dataex-. For more info,type help dataex
clear
input str9 birthyear
"11jun1965"
end

*Convert varialbe from string to date variable
gen birthyear_dateformat = date(birthyear,"DMY")
format birthyear_dateformat %td

*Get the year of birth
gen year = year(birthyear_dateformat)

*Get the age from the year of birth variable
gen age = 2021 - year