-
Notifications
You must be signed in to change notification settings - Fork 0
/
202course_analyse_yw.sas
136 lines (107 loc) · 3.03 KB
/
202course_analyse_yw.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
goptions reset= all;
goptions device= png;
goptions ftext=none;
%include 'E:\Tibet\data\990dm.txt';
%cre_lib(tibet,E:\Tibet\data\lib);
%cre_dir(E:\Tibet\data\out\yw);
ods listing close;
ods html file="E:\Tibet\data\out\yw\yw.xls" ;
ods noproctitle;
********************** distribution ;
%include 'E:\Tibet\data\901distribution.txt';
%distribution(tibet.yw,
zcj,
语文,
five.);
********************** basic_analyse ;
%include 'E:\Tibet\data\905basic_analyse.txt';
%basic_analyse(
tibet.yw,
dqmc,地区,
zcj);
%basic_analyse(
tibet.yw,
mzmc,民族,
zcj);
%basic_analyse(
tibet.yw,
kslbmc,考生类别,
zcj);
%basic_analyse(
tibet.yw,
zxmc,学校,
zcj);
%basic_analyse(
tibet.yw,
xbmc,性别,
zcj);
********************** effective score ;
%include 'E:\Tibet\data\906effective_score.txt';
%effective_score(
tibet.yw,
sxlbmc,
klmc,
zcj,
minzu
);
********************** nearby students ;
%include 'E:\Tibet\data\907nearly_stu.txt';
%linjie(tibet.zf,yw);
********************** items analyse;
%include 'E:\Tibet\data\902item_analyse.txt';
%item_analyse(
tibet.yw,
zcj,
xzt_fs1 xzt_fs2 xzt_fs3 xzt_fs4 xzt_fs5 xzt_fs6
t7 t89_8 t89_9 t10 t11 t12 t1315 t1617_16
t1617_17 t18 ,
tibet.yw_items
);
/********************** items analyse2;
%include 'E:\Tibet\data\9020item_analyse.txt';
%item_analyse(
tibet.yw,
zcj,
xzt_fs1 xzt_fs2 xzt_fs3 xzt_fs4 xzt_fs5 xzt_fs6
t7 t89_8 t89_9 t10 t11 t12 t1315 t1617_16
t1617_17 t18 ,
tibet.yw_items ,
dqmc,地区
);
***********/
********************** multichoice ;
%include 'E:\Tibet\data\903multichoice.txt';
%multichoice(
tibet.yw,
xzt_xx1 xzt_xx2 xzt_xx3 xzt_xx4 xzt_xx5 xzt_xx6,
6);
********************** nandu_xindu ;
%include 'E:\Tibet\data\904reliability.txt';
data tmp11;
set tibet.yw ;
if t2a=11;
run;
data tmp12;
set tibet.yw ;
if t2a=12;
run;
%nandu(tmp11, zcj,
xzt_fs1 xzt_fs2 xzt_fs3 xzt_fs4 xzt_fs5 xzt_fs6
t7 t89_8 t89_9 t10 t11 t1315 t1617_16
t1617_17 t18 , t18, tibet.yw_items,25);******最后一个参数为选做题分值;;
%nandu(tmp12, zcj,
xzt_fs1 xzt_fs2 xzt_fs3 xzt_fs4 xzt_fs5 xzt_fs6
t7 t89_8 t89_9 t10 t12 t1315 t1617_16
t1617_17 t18 , t18, tibet.yw_items,25); ******最后一个参数为选做题分值;;
ods html close;
********************** knowledge_skill;
%include 'E:\Tibet\data\908knowledge.txt';
ods rtf file="E:\Tibet\data\out\yw\knowledge_yw.doc" bodytitle startpage=no;
%knowledge(tibet.yw, tibet.yw_items, yw, 语文, zhishi);
%knowledge(tibet.yw, tibet.yw_items, yw, 语文, nengli);
%include 'E:\Tibet\data\knowledge2.sas';
ods rtf file="E:\Tibet\data\out\yw\knowledge_yw2.doc" bodytitle startpage=no;
%knowledge(tibet.yw, tibet.yw_items, yw, 语文, zhishi);
%knowledge(tibet.yw, tibet.yw_items, yw, 语文, nengli);
ods rtf close;
ods listing;