File: other.sas

package info (click to toggle)
ess 5.3.8~svn3917-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 10,888 kB
  • ctags: 1,686
  • sloc: lisp: 16,923; sh: 1,433; asm: 862; makefile: 286; xml: 193
file content (39 lines) | stat: -rw-r--r-- 1,069 bytes parent folder | download | duplicates (2)
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	     )
*/