标题: 回归分析没有办法输出! [打印本页] 作者: shiyiming 时间: 2006-6-2 23:46 标题: 回归分析没有办法输出! 程序如下:
data uspop;
input pop @@;
retain year 1780;
year=year+10;
yearsq=year*year;
pop=pop/1000;
cards;
3929 5308 7239 9638 12866 17069 23191 31443 39818 50155
62947 75994 91972 105710 122775 131669 151325 179323 203211
;
proc reg data=uspop;
var yearsq;
model pop=year/r cli clm;
plot r.*p.;
add yearsq;
plot;
plot pop*year='a' predicted.*year='p' u95.*year='u'
l95.*year='l' /overlay;
run;
运行出错,没有办法输出回归分析结果,出错信息如下:
NOTE: SAS went to a new line when INPUT statement reached past the end of a line.
NOTE: The data set WORK.USPOP has 19 observations and 3 variables.
NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.01 seconds