在sas中创建新变量
我正在尝试创建 3 个新变量并使用了此代码,但是我的日志中不断出现错误,我不确定这个问题是什么:
Data birthdata
SET birthdata;
native=.;
if race=3 THEN native=1;
if race=1 THEN native=0;
aarace=.;
if race=2 then aarace=1;
if race=1 then aarace=0;
nonwhite=.;
if (1<race=.) then nonwhite=1;
if race=1 then nonwhite=0;
label native = "Maternal race"
aarace = "Maternal race"
nonwhite = "Maternal race";
FORMAT native native. aarace aarace. nonwhite nonwhite.;
run;
`
I am trying to create 3 new variables and have used this code however keep getting an error in my log, I am not sure what this issue is:
Data birthdata
SET birthdata;
native=.;
if race=3 THEN native=1;
if race=1 THEN native=0;
aarace=.;
if race=2 then aarace=1;
if race=1 then aarace=0;
nonwhite=.;
if (1<race=.) then nonwhite=1;
if race=1 then nonwhite=0;
label native = "Maternal race"
aarace = "Maternal race"
nonwhite = "Maternal race";
FORMAT native native. aarace aarace. nonwhite nonwhite.;
run;
`
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你错过了;在第一行数据步骤中。
You missed ; in first line of data step.