-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhw1_1.sas
156 lines (143 loc) · 2.2 KB
/
hw1_1.sas
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
data hw1_1; input GPA act_scores ;
cards;
3.897 21
3.885 14
3.778 28
2.540 22
3.028 21
3.865 31
2.962 32
3.961 27
0.500 29
3.178 26
3.310 24
3.538 30
3.083 24
3.013 24
3.245 33
2.963 27
3.522 25
3.013 31
2.947 25
2.118 20
2.563 24
3.357 21
3.731 28
3.925 44
3.556 28
3.101 26
2.420 28
2.579 22
3.871 26
3.060 21
3.927 25
2.375 16
2.929 28
3.375 26
2.857 22
3.072 24
3.381 21
3.290 30
3.549 27
3.646 26
2.978 26
2.654 30
2.540 24
2.250 26
2.069 29
2.617 24
2.183 31
2.000 15
2.952 19
3.806 18
2.871 27
3.352 16
3.305 27
2.952 26
3.547 24
3.691 30
3.160 21
2.194 20
3.323 30
3.936 29
2.922 25
2.716 23
3.370 25
3.606 23
2.642 30
2.452 21
2.655 24
3.714 32
1.806 18
3.516 23
3.039 20
2.966 23
2.482 18
2.700 18
3.920 29
2.834 20
3.222 23
3.084 26
4.000 28
3.511 34
3.323 20
3.072 20
2.079 26
3.875 32
3.208 25
2.920 27
3.345 27
3.956 29
3.808 19
2.506 21
3.886 24
2.183 27
3.429 25
3.024 18
3.750 29
3.833 24
3.113 27
2.875 21
2.747 19
2.311 18
1.841 25
1.583 18
2.879 20
3.591 32
2.914 24
3.716 35
2.800 25
3.621 28
3.792 28
2.867 25
3.419 22
3.600 30
2.394 20
2.286 20
1.486 31
3.885 20
3.800 29
3.914 28
1.860 41
2.948 28
;
run;
proc print data=hw1_1;
run;
*estimate the regression line;
PROC REG DATA=Hw1_1;
model GPA= act_scores/clb;
OUTPUT out=hw01results p=predicted_GPA;
run;
quit;
*to generate a 99% confidence interval, change the alpha level to .01;
PROC REG DATA=Hw1_1;
model GPA= act_scores/clb alpha=.01;
run;
proc print data=hw01results;
run;
symbol1 v=circle c=black;
symbol2 i=join v=star c=red;
PROC GPLOT DATA= hw01results;
PLOT GPA*act_scores predicted_GPA*act_scores/ overlay;
RUN;