做简单的线性回归:
proc reg data=A outest = B noprint;
model su = year ;
by v;
output out=C;
run;
出现了这样的warning,可是不是太理解为什么:
WARNING: The range of variable YEAR is so small relative to its mean that there may be loss of accuracy in the computations. You may need to rescale the variable to
have a larger value of RANGE/abs(MEAN), for example, by using PROC STANDARD M=0;
用于回归的记录数是20条。
那位大侠可以帮忙解释一下么。以前也做过这样的回归,用的也是year这个变量,可是当时没有出这个问题,当时的记录数是35条,和这个有关系么?
谢谢!