1 data a;
2 input x;
3 format x pvalue6.4;
---------
48
ERROR 48-59: The format PVALUE was not found or could not be loaded.
4 cards;
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.A may be incomplete. When this step was stopped there were 0 observations and 1 variables.
NOTE: DATA statement used (Total process time):
real time 0.29 seconds
cpu time 0.03 seconds
6 ;
7 run;
输出格式pvalue,以前没问题的,不知道突然怎么的,就出现了找不到输出格式的问题,求助
版本SAS 9.2 TS level 2M2
但试了一些其它的格式如z6. , percent10.2; yymmdd10.;
都是可以的啊,为什么就这个pvalue的找不到
并且,直接用proc 步计算统计量p值的时候,p值不能正确显示,也会出现上述的waring
34 proc univariate data=sashelp.class;
35 var age;
36 run;
WARNING: 格式“pvalue6.4”加载失败!
NOTE: “PROCEDURE UNIVARIATE”所用时间(总处理时间):
实际时间 0.45 秒
CPU 时间 0.06 秒
补充:强烈怀疑SAS的格式目录或文件被损坏,想知道格式文件存在什么地方,找别人电脑上的拷贝过来替换一下。