SAS中文论坛

 找回密码
 立即注册

扫一扫,访问微社区

查看: 2241|回复: 1
打印 上一主题 下一主题

请问高手:这是什么错误,如何修改呢?

[复制链接]

49

主题

76

帖子

1462

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
1462
楼主
 楼主| 发表于 2003-10-14 10:36:19 | 只看该作者

请问高手:这是什么错误,如何修改呢?

<!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: -->
data stacey.laydown1;
set stacey.laydown1;
format
        xjoin date7.
;
xjoin=.;
if _n_le 13 then xjoin=intnx('day','08dec00'd,_n_);
if _n_gt 13 then xjoin=intnx('day','02jan01'd,_n_-13);
run;

LOG窗口:
56   data stacey.laydown1;
57   set stacey.laydown1;
58   format
59       xjoin date7.
60   ;
61   xjoin=.;
NOTE: SCL source line.
62   if _n_le 13 then xjoin=intnx('day','08dec00'd,_n_);
              --
              388
                 ----
                 202
NOTE: SCL source line.
63   if _n_gt 13 then xjoin=intnx('day','02jan01'd,_n_-13);
              --
              388
                 ----
                 202
ERROR 388-185: Expecting an arithmetic operator.

ERROR 202-322: The option or parameter is not recognized and will be ignored.

64   run;

NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set STACEY.LAYDOWN1 may be incomplete.  When this step was stopped there
         were 0 observations and 16 variables.
WARNING: Data set STACEY.LAYDOWN1 was not replaced because this step was stopped.
NOTE: DATA statement used:
      real time           0.01 seconds
      cpu time            0.01 seconds
回复 支持 反对

使用道具 举报

49

主题

76

帖子

1462

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
1462
沙发
 楼主| 发表于 2003-10-14 12:22:28 | 只看该作者

Re: 请问高手:这是什么错误,如何修改呢?

[quote=&quot;bluecrystal&quot;:797f7]:oops:
if _n_le 13 then xjoin=intnx('day','08dec00'd,_n_);
if _n_gt 13 then xjoin=intnx('day','02jan01'd,_n_-13);
[/quote:797f7]

改为:

if _n_ le 13 then xjoin=intnx('day','08dec00'd,_n_);
if _n_ gt 13 then xjoin=intnx('day','02jan01'd,_n_-13);

建议不要再用这么晦涩的语句:lt/gt,直接用“&lt;”和“&gt;”好了! <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: -->
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|小黑屋|手机版|Archiver|SAS中文论坛  

GMT+8, 2025-1-5 18:19 , Processed in 0.130151 second(s), 20 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表