1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
options linesize=74;
libname regr 'd:/rmh/ESS/philasug/regr';
filename grafout "regr.ps";
goptions device=ps gsfname=grafout gsfmode=replace gaccess=sasgastd
csymbol=black; /* csymbol makes 'symbol v=' work correctly */
data regr.fat;
infile 'd:/rmh/hh/datasets/fat.data' firstobs=2;
input bodyfat abdomin biceps forearm wrist;
run;
%include 'd:/stat/Data/friendly/macros/scatmat.sas' ;
%scatmat(data=regr.fat,
var= bodyfat abdomin biceps forearm wrist,
gout=regr.gseg);
run;
proc glm data=regr.fat;
model bodyfat = abdomin biceps;
output out=regr.fat2 p=bodyfathat ;
run;
proc gplot data=regr.fat2;
symbol1 v=dot ;
symbol2 v=point i=rl;
plot bodyfat * abdomin = 1
bodyfathat * abdomin = 2 / overlay;
run;
/*
(ess-font-lock-bw)
(modify-face 'ediff-current-diff-face-B "gray10" "gray80" nil t t nil )
(modify-face 'ediff-current-diff-face-A "gray55" "gray95" nil t t nil )
(modify-face 'ediff-fine-diff-face-A "white" "gray75" nil t t nil )
*/
|