stata数值型转化为字符型:tostring.webuse tostring,clear .des .list .tostring year day,replace.des .gen date1=month+”/”+day+”/”+year //.list.gen date2=date(date1,”mdy”)最后一行不是计算从那天起直到括号中指定的
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/25 18:05:10
stata数值型转化为字符型:tostring.webuse tostring,clear .des .list .tostring year day,replace.des .gen date1=month+”/”+day+”/”+year //.list.gen date2=date(date1,”mdy”)最后一行不是计算从那天起直到括号中指定的
stata数值型转化为字符型:tostring
.webuse tostring,clear
.des
.list
.tostring year day,replace
.des
.gen date1=month+”/”+day+”/”+year //
.list
.gen date2=date(date1,”mdy”)
最后一行不是计算从那天起直到括号中指定的某天date1一共过了多少天,为什么我的date2数据生成不了呢?还说(10 missing values generated)
stata数值型转化为字符型:tostring.webuse tostring,clear .des .list .tostring year day,replace.des .gen date1=month+”/”+day+”/”+year //.list.gen date2=date(date1,”mdy”)最后一行不是计算从那天起直到括号中指定的
应该这样:
webuse tostring,clear
des
list
tostring year day,replace
des
gen date1=month+"/"+day+"/"+year
list
gen date2=date(date1,"MDY")
我的也是诶~stata十八讲