SAS的奇怪bug,求大佬帮帮忙!
sas吧
全部回复
仅看楼主
level 1
Radi_head 楼主
SAS新手,执行SAS程序时总是遇到问题,例如我运行下面的代码:
data a;
input x;
cards;
5.3
5.3
5.2
2.1
3.0
3.3
2.8
3.4
2.3
4.8
;
proc means data=a;
var x;
run;
然后就会出现这样的log:
18 data a;
19 input x;
20 cards;
NOTE: The data set WORK.A has 10 observations and 1 variables.
ERROR: Rename of temporary member for WORK.A.DATA failed.
File may be found in C:\Program Files\SAS Institute\SAS\V8\TEMP\SAS Temporary Files\_TD11628.
NOTE: DATA statement used:
real time 0.01 seconds
cpu time 0.01 seconds
31 ;
32 proc means data=a;
ERROR: File WORK.A.DATA does not exist.
33 var x;
ERROR: No data set open to look up variables.
34 run;
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE MEANS used:
real time 0.00 seconds
cpu time 0.00 seconds
然而在同学的电脑上就完全正常,请问这个是什么原因?
2020年03月06日 06点03分 1
level 1
一样,没救了,等死吧,下一个
2020年09月23日 16点09分 2
level 1
没大佬巨佬回答一下的么[泪]悲伤顶贴
2020年09月24日 05点09分 3
level 7
我电脑跑了一遍没问题,可能是你SAS没装好吧
2021年01月12日 07点01分 4
level 1
试一下以管理员身份运行,可能是身份权限不够
2023年10月19日 14点10分 5
用管理员身份就可以了,太感谢你了
2024年08月09日 05点08分
1