data test4;
input consumption GDP;
datalines;
262 480
284 514
311 566
354 668
437 811
485 908
550 1043
693 1355
762 1512
;
run;
ods graphics on;
proc reg data=test4 plots(only)=(diagnostics fitplot);
model consumption = GDP;
run;
可是画不出图呀。LOG中显示:
ERROR: General error from the User Interface subsystem.
ERROR: DMS font returned.
135 ods graphics on;
136 proc reg data=test4 plots(only)=(diagnostics fitplot);
----
22
76
ERROR 22-322: Syntax error, expecting one of the following: ), MAXPOINTS, UNPACK, UNPACKPANELS.
ERROR 76-322: Syntax error, statement will be ignored.
137 model consumption = GDP;
NOTE: The previous statement has been deleted.
138 run;
WARNING: No variables specified for an SSCP matrix. Execution terminating.
NOTE: PROCEDURE REG used (Total process time):
real time 0.37 seconds
cpu time 0.25 seconds
麻烦知道解决的同学告诉我怎么解决?