在sas中创建新变量

发布于 2025-01-20 12:19:59 字数 517 浏览 0 评论 0原文

我正在尝试创建 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

且行且努力 2025-01-27 12:19:59

你错过了;在第一行数据步骤中。

You missed ; in first line of data step.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文