-
Notifications
You must be signed in to change notification settings - Fork 100
/
calcqtimes.php
189 lines (171 loc) · 6.05 KB
/
calcqtimes.php
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?php
//IMathAS: Utility script to update question average times
//(c) 2014 David Lippman
//Is not currently part of the GUI
require_once "init.php";
if ($myrights<100) {
exit;
}
ini_set('display_errors',1);
error_reporting(E_ALL);
ini_set("max_execution_time", "3600");
require_once "header.php";
$start = microtime(true);
//get last updated time
$stm = $DBH->query("SELECT id,ver FROM imas_dbschema WHERE id=3 OR id=4");
if ($stm->rowCount()==0) {
$lastupdate = 0;
$lastfirstupdate = 0;
} else {
while ($r = $stm->fetch(PDO::FETCH_NUM)) {
if ($r[0]==3) {
$lastupdate = $r[1];
} else {
$lastfirstupdate = $r[1];
}
}
}
//will calculate a trimmed mean of times. What percent to trim?
$trim = .2; //20%
//The average time per attempt over all attempts calculation is REALLY
//slow and requires a ton of memory. Not recommended unless you really really
//care
$doslowmethod = false;
if ($doslowmethod) {
$qtimes = array();
$stm = $DBH->prepare("SELECT questions,timeontask FROM imas_assessment_sessions WHERE timeontask<>'' AND endtime>:lastupdate");
$stm->execute(array(':lastupdate'=>$lastupdate));
while ($row = $stm->fetch(PDO::FETCH_NUM)) {
//$q = explode(',',$row[0]);
if (strpos($row[0],';')===false) {
$q = explode(",",$row[0]);
} else {
list($questions,$bestquestions) = explode(";",$row[0]);
$q = explode(",",$bestquestions);
}
$t = explode(',',$row[1]);
foreach ($q as $k=>$qn) {
if ($t[$k]=='') {continue;}
if (isset($qtimes[$qn])) {
$qtimes[$qn] .= '~'.$t[$k];
} else {
$qtimes[$qn] = $t[$k];
}
}
}
$qstimes = array();
$qsfirsttimes = array();
$qsfirstscores = array();
$stm = $DBH->query("SELECT id,questionsetid FROM imas_questions WHERE 1");
while ($row = $stm->fetch(PDO::FETCH_NUM)) {
if (isset($qtimes[$row[0]])) {
if (isset($qstimes[$row[1]])) {
$qstimes[$row[1]] .= '~'.$qtimes[$row[0]];
} else {
$qstimes[$row[1]] = $qtimes[$row[0]];
}
}
}
unset($qtimes);
$avgtime = array();
foreach ($qstimes as $qsid=>$tv) {
$times = explode('~',$tv);
sort($times, SORT_NUMERIC);
$trimn = floor($trim*count($times));
$times = array_slice($times,$trimn,count($times)-2*$trimn);
$avgtime[$qsid] = round(array_sum($times)/count($times));
}
}
$avgfirsttime = array();
$avgfirstscore = array();
$n = array();
$thistimes = array();
$thisscores = array();
$lastq = -1;
$stm = $DBH->prepare("SELECT qsetid,score,timespent FROM imas_firstscores WHERE timespent>0 AND timespent<1200 AND id>:lastfirstupdate ORDER BY qsetid");
$stm->execute(array(':lastfirstupdate'=>$lastfirstupdate));
while ($row = $stm->fetch(PDO::FETCH_NUM)) {
if ($row[0] != $lastq && $lastq>0) {
$n[$lastq] = count($thisscores);
sort($thistimes, SORT_NUMERIC);
$trimn = floor($trim*count($thistimes));
$thistimes = array_slice($thistimes,$trimn,count($thistimes)-2*$trimn);
$avgfirsttime[$lastq] = round(array_sum($thistimes)/count($thistimes));
$avgfirstscore[$lastq] = round(array_sum($thisscores)/count($thisscores));
$thistimes = array();
$thisscores = array();
}
$thistimes[] = $row[2];
$thisscores[] = $row[1];
if ($row[0] != $lastq) {
$lastq = $row[0];
}
}
if (count($thistimes)>0) {
$n[$lastq] = count($thisscores);
sort($thistimes, SORT_NUMERIC);
$trimn = floor($trim*count($thistimes));
$thistimes = array_slice($thistimes,$trimn,count($thistimes)-2*$trimn);
$avgfirsttime[$lastq] = round(array_sum($thistimes)/count($thistimes));
$avgfirstscore[$lastq] = round(array_sum($thisscores)/count($thisscores));
}
$nq = count($n);
$totn = array_sum($n);
if ($lastfirstupdate==0) {
foreach ($n as $qsid=>$nval) {
if ($doslowmethod) {
$avg = $avgtime[$qsid].','.$avgfirsttime[$qsid].','.$avgfirstscore[$qsid].','.$n[$qsid];
} else {
$avg = '0,'.$avgfirsttime[$qsid].','.$avgfirstscore[$qsid].','.$n[$qsid];
}
$stm = $DBH->prepare("UPDATE imas_questionset SET avgtime=:avgtime WHERE id=:id");
$stm->execute(array(':avgtime'=>$avg, ':id'=>$qsid));
}
} else {
$stm = $DBH->prepare("SELECT id,avgtime FROM imas_questionset");
$stm->execute(array());
while ($row = $stm->fetch(PDO::FETCH_NUM)) {
$qsid = $row[0];
if (!isset($avgfirsttime[$qsid]) || $n[$qsid]==0) {continue;}
if (strpos($row[1],',')!==false) {
list($oldavgtime,$oldfirsttime,$oldfirstscore,$oldn) = explode(',',$row[1]);
if ($doslowmethod) {
$avgtime[$qsid] = round(($avgtime[$qsid]*$n[$qsid] + $oldavgtime*$oldn)/($n[$qsid]+$oldn));
}
$avgfirsttime[$qsid] = round(($avgfirsttime[$qsid]*$n[$qsid] + $oldfirsttime*$oldn)/($n[$qsid]+$oldn));
$avgfirstscore[$qsid] = round(($avgfirstscore[$qsid]*$n[$qsid] + $oldfirstscore*$oldn)/($n[$qsid]+$oldn));
$n[$qsid] += $oldn;
}
if ($doslowmethod) {
$avg = $avgtime[$qsid].','.$avgfirsttime[$qsid].','.$avgfirstscore[$qsid].','.$n[$qsid];
} else {
$avg = '0,'.$avgfirsttime[$qsid].','.$avgfirstscore[$qsid].','.$n[$qsid];
}
$stm2 = $DBH->prepare("UPDATE imas_questionset SET avgtime=:avgtime WHERE id=:id");
$stm2->execute(array(':avgtime'=>$avg, ':id'=>$qsid));
}
}
$stm = $DBH->query("SELECT max(id) FROM imas_firstscores");
$row = $stm->fetch(PDO::FETCH_NUM);
if ($lastfirstupdate == 0) {
$lastfirstupdate = $row[0];
if ($doslowmethod) {
$lastupdate = time();
}
$stm = $DBH->prepare("INSERT INTO imas_dbschema (id,ver) VALUES (:id, :ver),(:idB, :verB)");
$stm->execute(array(':id'=>3, ':ver'=>$lastupdate, ':idB'=>4, ':verB'=>$lastfirstupdate));
} else {
$lastfirstupdate = $row[0];
$stm = $DBH->prepare("UPDATE imas_dbschema SET ver=:ver WHERE id=4");
$stm->execute(array(':ver'=>$lastfirstupdate));
if ($doslowmethod) {
$lastupdate = time();
$stm = $DBH->prepare("UPDATE imas_dbschema SET ver=:ver WHERE id=3");
$stm->execute(array(':ver'=>$lastupdate));
}
}
echo "Done: updated $nq questions with a total of $totn new datapoints";
echo '<br/>Max memory: '.memory_get_peak_usage().', '.memory_get_peak_usage(true);
echo '<br/>Time: '.(microtime(true) - $start);
require_once "footer.php";
?>