Project

General

Profile

1 717 jones
OPTIONS LS=78 NOCENTER;
2
LIBNAME data '.';
3
FILENAME qdata './querydata.csv';
4
5
DATA ONE;
6
  INFILE qdata DLM=',' TRUNCOVER;
7
  INPUT nodes depth index nested hits searched;
8
9
PROC SORT;
10
  BY nodes depth hits searched;
11
12
PROC GLM;
13
  MODEL index = nodes depth searched;
14
QUIT;
15
16
PROC GLM;
17
  MODEL nested = nodes depth searched;
18
QUIT;
19
20
PROC PLOT;
21
  PLOT index*depth;
22
PROC PLOT;
23
  PLOT index*nodes;
24
PROC PLOT;
25
  PLOT index*searched;
26
27
RUN;