Annotation of loncom/interface/statistics/lonproblemanalysis.pm, revision 1.117
1.1 stredwic 1: # The LearningOnline Network with CAPA
2: #
1.117 ! matthew 3: # $Id: lonproblemanalysis.pm,v 1.116 2005/02/28 23:07:32 matthew Exp $
1.1 stredwic 4: #
5: # Copyright Michigan State University Board of Trustees
6: #
7: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
8: #
9: # LON-CAPA is free software; you can redistribute it and/or modify
10: # it under the terms of the GNU General Public License as published by
11: # the Free Software Foundation; either version 2 of the License, or
12: # (at your option) any later version.
13: #
14: # LON-CAPA is distributed in the hope that it will be useful,
15: # but WITHOUT ANY WARRANTY; without even the implied warranty of
16: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17: # GNU General Public License for more details.
18: #
19: # You should have received a copy of the GNU General Public License
20: # along with LON-CAPA; if not, write to the Free Software
21: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22: #
23: # /home/httpd/html/adm/gpl.txt
24: #
25: # http://www.lon-capa.org/
26: #
1.11 minaeibi 27: package Apache::lonproblemanalysis;
1.1 stredwic 28:
29: use strict;
30: use Apache::lonnet();
1.25 matthew 31: use Apache::loncommon();
1.7 stredwic 32: use Apache::lonhtmlcommon();
1.23 matthew 33: use Apache::loncoursedata();
34: use Apache::lonstatistics;
35: use Apache::lonlocal;
1.71 matthew 36: use Apache::lonstathelpers();
37: use Apache::lonstudentsubmissions();
1.37 matthew 38: use HTML::Entities();
1.42 matthew 39: use Time::Local();
1.106 matthew 40: use capa;
1.2 stredwic 41:
1.40 matthew 42: my $plotcolors = ['#33ff00',
43: '#0033cc', '#990000', '#aaaa66', '#663399', '#ff9933',
44: '#66ccff', '#ff9999', '#cccc33', '#660000', '#33cc66',
45: ];
1.39 matthew 46:
1.54 matthew 47: my @SubmitButtons = ({ name => 'PrevProblemAnalysis',
48: text => 'Previous Problem' },
49: { name => 'ProblemAnalysis',
1.46 matthew 50: text => 'Analyze Problem Again' },
1.54 matthew 51: { name => 'NextProblemAnalysis',
52: text => 'Next Problem' },
53: { name => 'break'},
1.46 matthew 54: { name => 'SelectAnother',
1.111 matthew 55: text => 'Choose a different Problem' });
1.46 matthew 56:
1.1 stredwic 57: sub BuildProblemAnalysisPage {
1.23 matthew 58: my ($r,$c)=@_;
1.49 matthew 59: #
60: my %Saveable_Parameters = ('Status' => 'scalar',
61: 'Section' => 'array',
62: 'NumPlots' => 'scalar',
63: 'AnalyzeOver' => 'scalar',
64: );
65: &Apache::loncommon::store_course_settings('problem_analysis',
66: \%Saveable_Parameters);
67: &Apache::loncommon::restore_course_settings('problem_analysis',
68: \%Saveable_Parameters);
69: #
70: &Apache::lonstatistics::PrepareClasslist();
1.48 matthew 71: #
1.25 matthew 72: $r->print(&CreateInterface());
1.28 matthew 73: #
74: my @Students = @Apache::lonstatistics::Students;
75: #
1.86 matthew 76: if (@Students < 1 && exists($ENV{'form.firstrun'})) {
1.46 matthew 77: $r->print('<h2>There are no students in the sections selected</h2>');
78: }
79: #
1.85 matthew 80: my @CacheButtonHTML =
81: &Apache::lonstathelpers::manage_caches($r,'Statistics','stats_status');
1.39 matthew 82: $r->rflush();
1.46 matthew 83: #
1.111 matthew 84: my $problem_types = '(option|radiobutton|numerical)';
1.33 matthew 85: if (exists($ENV{'form.problemchoice'}) &&
86: ! exists($ENV{'form.SelectAnother'})) {
1.46 matthew 87: foreach my $button (@SubmitButtons) {
1.54 matthew 88: if ($button->{'name'} eq 'break') {
89: $r->print("<br />\n");
90: } else {
91: $r->print('<input type="submit" name="'.$button->{'name'}.'" '.
92: 'value="'.&mt($button->{'text'}).'" />');
93: $r->print(' 'x5);
94: }
1.46 matthew 95: }
1.85 matthew 96: foreach my $html (@CacheButtonHTML) {
97: $r->print($html.(' 'x5));
98: }
1.31 matthew 99: #
1.115 matthew 100: $r->print(&Apache::lonstathelpers::submission_report_form
101: ('problem_analysis'));
102: #
1.25 matthew 103: $r->print('<hr />');
1.54 matthew 104: $r->rflush();
105: #
106: # Determine which problem we are to analyze
1.61 matthew 107: my $current_problem = &Apache::lonstathelpers::get_target_from_id
108: ($ENV{'form.problemchoice'});
1.54 matthew 109: #
1.116 matthew 110: my ($navmap,$prev,$curr,$next) =
1.61 matthew 111: &Apache::lonstathelpers::get_prev_curr_next($current_problem,
1.66 matthew 112: $problem_types,
113: 'response',
1.61 matthew 114: );
1.54 matthew 115: if (exists($ENV{'form.PrevProblemAnalysis'}) && defined($prev)) {
116: $current_problem = $prev;
117: } elsif (exists($ENV{'form.NextProblemAnalysis'}) && defined($next)) {
118: $current_problem = $next;
119: } else {
120: $current_problem = $curr;
121: }
1.23 matthew 122: #
1.54 matthew 123: # Store the current problem choice and send it out in the form
1.61 matthew 124: $ENV{'form.problemchoice'} =
125: &Apache::lonstathelpers::make_target_id($current_problem);
1.54 matthew 126: $r->print('<input type="hidden" name="problemchoice" value="'.
127: $ENV{'form.problemchoice'}.'" />');
1.28 matthew 128: #
1.54 matthew 129: if (! defined($current_problem->{'resource'})) {
1.46 matthew 130: $r->print('resource is undefined');
131: } else {
1.54 matthew 132: my $resource = $current_problem->{'resource'};
1.116 matthew 133: $r->print('<h1>'.$resource->compTitle.'</h1>');
134: $r->print('<h3>'.$resource->src.'</h3>');
1.91 matthew 135: if ($ENV{'form.show_prob'} eq 'true') {
136: $r->print(&Apache::lonstathelpers::render_resource($resource));
137: }
1.44 matthew 138: $r->rflush();
1.71 matthew 139: my %Data = &Apache::lonstathelpers::get_problem_data
1.116 matthew 140: ($resource->src);
1.88 matthew 141: my $problem_data = $Data{$current_problem->{'part'}.
1.54 matthew 142: '.'.
143: $current_problem->{'respid'}};
144: if ($current_problem->{'resptype'} eq 'option') {
1.56 matthew 145: &OptionResponseAnalysis($r,$current_problem,
1.88 matthew 146: $problem_data,
1.47 matthew 147: \@Students);
1.54 matthew 148: } elsif ($current_problem->{'resptype'} eq 'radiobutton') {
1.97 matthew 149: &radio_response_analysis($r,$current_problem,
150: $problem_data,
151: \@Students);
1.66 matthew 152: } elsif ($current_problem->{'resptype'} eq 'numerical') {
1.103 matthew 153: &numerical_response_analysis($r,$current_problem,
154: $problem_data,\@Students);
1.47 matthew 155: } else {
1.102 matthew 156: $r->print('<h2>Analysis of '.$current_problem->{'resptype'}.' is not supported</h2>');
1.47 matthew 157: }
1.7 stredwic 158: }
1.23 matthew 159: $r->print('<hr />');
1.25 matthew 160: } else {
1.31 matthew 161: $r->print('<input type="submit" name="ProblemAnalysis" value="'.
162: &mt('Analyze Problem').'" />');
163: $r->print(' 'x5);
1.27 matthew 164: $r->print('<h3>'.&mt('Please select a problem to analyze').'</h3>');
1.116 matthew 165: $r->print(&Apache::lonstathelpers::problem_selector($problem_types));
1.1 stredwic 166: }
167: }
168:
1.69 matthew 169: #########################################################
170: #########################################################
171: ##
1.66 matthew 172: ## Numerical Response Routines
173: ##
174: #########################################################
175: #########################################################
1.103 matthew 176: sub numerical_response_analysis {
177: my ($r,$problem,$problem_analysis,$students) = @_;
1.79 matthew 178: my $c = $r->connection();
1.103 matthew 179: #
180: if ($ENV{'form.AnalyzeOver'} !~ /^(tries|time)$/) {
181: $r->print('Bad request');
182: }
183: #
1.82 matthew 184: my ($resource,$partid,$respid) = ($problem->{'resource'},
185: $problem->{'part'},
186: $problem->{'respid'});
1.103 matthew 187: # Gather student data
188: my $response_data = &Apache::loncoursedata::get_response_data
1.82 matthew 189: (\@Apache::lonstatistics::SelectedSections,
190: $Apache::lonstatistics::enrollment_status,
1.116 matthew 191: $resource->symb,$respid);
1.103 matthew 192: #
1.104 matthew 193: $problem_analysis->{'answercomputed'} = 1;
194: if ($problem_analysis->{'answercomputed'}) {
195: my $answers =
196: &Apache::lonstathelpers::GetStudentAnswers($r,$problem,$students,
197: 'Statistics',
198: 'stats_status');
199: $r->print(&numerical_one_dimensional_plot($r,600,150,$answers));
200: }
1.106 matthew 201: #
202: if (ref($response_data) ne 'ARRAY') {
203: $r->print('<h2>'.
204: &mt('There is no submission data for this resource').
205: '</h2>');
206: return;
207: }
1.104 matthew 208: my $analysis_html = '<table>';
1.103 matthew 209: for (my $plot_num = 1;$plot_num<=$ENV{'form.NumPlots'};$plot_num++) {
210: my $restriction_function;
1.104 matthew 211: my $header_message;
212: my $stats_message;
213: my $post_message; # passed through &mt sooner rather than later
214: my $no_data_message;
215: my @extra_data;
216: if ($ENV{'form.AnalyzeOver'} eq 'tries') {
217: $restriction_function = sub {($_[0]->{'tries'} == $plot_num?1:0)};
218: $header_message = 'Attempt [_1]';
219: $stats_message =
220: '[_1] submissions, [_2] correct, [_3] incorrect';
221: $post_message = '';
222: $no_data_message = 'No data exists for attempt [_1]';
223: } else {
224: my $starttime = &Apache::lonhtmlcommon::get_date_from_form
225: ('startdate_'.$plot_num);
226: my $endtime = &Apache::lonhtmlcommon::get_date_from_form
227: ('enddate_'.$plot_num);
228: ($starttime,$endtime) = &ensure_start_end_times
229: ($starttime,$endtime,
230: &get_time_from_row($response_data->[0]),
231: &get_time_from_row($response_data->[-1]),
232: $plot_num);
233: $header_message = 'Data from [_2] to [_3]';
234: $extra_data[0] = &Apache::lonlocal::locallocaltime($starttime);
235: $extra_data[1] = &Apache::lonlocal::locallocaltime($endtime);
236: #
237: $stats_message =
238: '[_1] submissions from [_4] students, [_2] correct, [_3] incorrect';
239: #
240: $post_message =
241: &mt('Start time: [_1]',
242: &Apache::lonhtmlcommon::date_setter
243: ('Statistics','startdate_'.$plot_num,$starttime)).
244: '<br />'.
245: &mt('End time: [_1]',
246: &Apache::lonhtmlcommon::date_setter
247: ('Statistics','enddate_'.$plot_num,$endtime));
248: $restriction_function =
249: sub {
250: my $t = $_[0]->{'timestamp'};
251: if ($t >= $starttime && $t < $endtime) {
252: return 1;
253: } else {
254: return 0;
255: }
256: };
257: $no_data_message = 'No data for [_2] to [_3]';
258: }
1.103 matthew 259: #
1.106 matthew 260: my ($correct,$answers) =
261: &numerical_determine_answers($r,$resource,$partid,
262: $respid,$students);
1.103 matthew 263: if ($c->aborted()) { return; };
264: #
1.112 matthew 265: my ($responses,$stats) =
266: &numerical_classify_responses($response_data,$correct,
267: $restriction_function);
268: if ($stats->{'submission_count'} == 0) {
1.104 matthew 269: $analysis_html.=
270: '<tr><td colspan="2"><font size="+1"><b>'.
271: &mt($no_data_message,$plot_num,@extra_data).
272: '</b></font></td></tr>';
273: } else {
274: $analysis_html.=
275: '<tr><td colspan="2" align="center"><font size="+1"><b>'.
276: &mt($header_message,$plot_num,@extra_data).
277: '</b></font></td></tr>'.
278: '<tr><td colspan="2" align="center">'.
279: &mt($stats_message,
1.112 matthew 280: $stats->{'submission_count'},
281: $stats->{'correct_count'},
282: $stats->{'incorrect_count'},
283: $stats->{'students'},
1.104 matthew 284: @extra_data).
285: '</td></tr>'.
286: '<tr>'.'<td valign="top" align="center">'.
1.112 matthew 287: &numerical_plot_percent($r,$responses,$stats).'</td>'.
1.104 matthew 288: '<td align="center" valign="top">'.
1.112 matthew 289: &numerical_plot_differences($r,$responses,$stats).'</td>'.
1.104 matthew 290: '</tr>';
291: }
292: if ($post_message ne '') {
293: $analysis_html .=
294: '<tr><td colspan="2">'.$post_message.'</td></tr>';
295: }
1.66 matthew 296: }
1.104 matthew 297: $analysis_html.='</table>';
298: $r->print($analysis_html);
1.78 matthew 299: #
1.103 matthew 300: return;
301: }
1.102 matthew 302:
1.103 matthew 303: sub numerical_plot_percent {
1.112 matthew 304: my ($r,$responses,$stats) = @_;
1.103 matthew 305: #
1.112 matthew 306: my $total = $stats->{'submission_count'};
1.103 matthew 307: return '' if ($total == 0);
1.114 matthew 308: my $max_bins = 50;
309: my $lowest_percent = $stats->{'min_percent'};
310: my $highest_percent = $stats->{'max_percent'};
311: my $percent_spread = $highest_percent - $lowest_percent;
312: foreach (qw/20 30 40 50 100 200/) {
313: if ($percent_spread < $_) {
314: $highest_percent =$_/2;
315: last;
316: }
1.113 matthew 317: }
1.114 matthew 318: my $bin_size = 1;
319: foreach (qw/0.01 0.05 0.1 0.5 1 2 5 10 20 25 50 100/) {
320: if ($lowest_percent/2 < $_){
321: $bin_size = $_;
322: last;
323: }
1.113 matthew 324: }
1.103 matthew 325: my @bins;
1.114 matthew 326: for (my $bin = -$highest_percent;$bin<0;$bin+=$bin_size) {
327: push (@bins,$bin);
328: }
329: for (my $bin = 0; $bin<$highest_percent;$bin+=$bin_size) {
330: push (@bins,$bin);
1.103 matthew 331: }
1.114 matthew 332: push(@bins,$highest_percent);
1.103 matthew 333: #
334: my @correct;
335: my @incorrect;
1.104 matthew 336: my @count;
1.112 matthew 337: while (my ($ans,$submissions) = each(%$responses)) {
1.104 matthew 338: while (my ($submission,$counts) = each(%$submissions)) {
339: my ($correct_count,$incorrect_count) = @$counts;
1.114 matthew 340: my $scaled_value = 100*($submission-$ans)/abs($ans);
341: if ($scaled_value < $bins[0]) {
342: $bins[0]=$scaled_value -1;
343: }
344: my $bin;
345: for ($bin=0;$bin<$#bins;$bin++) {
1.103 matthew 346: last if ($bins[$bin]>$scaled_value);
347: }
1.114 matthew 348: $correct[$bin-1]+=$correct_count;
349: $incorrect[$bin-1]+=$incorrect_count;
350: $count[$bin-1]+=$correct_count+$incorrect_count;
1.103 matthew 351: }
352: }
353: #
1.114 matthew 354: my @plot_correct = @correct;
355: my @plot_incorrect = @incorrect;
356: my $max;
357: for (my $i=0;$i<$#bins;$i++) {
358: $plot_correct[$i] *= 100/$total;
359: $plot_incorrect[$i] *= 100/$total;
360: if (! defined($max) ||
361: $max < $plot_correct[$i]+$plot_incorrect[$i] ) {
362: $max = $plot_correct[$i]+$plot_incorrect[$i];
1.112 matthew 363: }
364: }
1.114 matthew 365: foreach (qw/1 5 10 15 20 25 30 40 50 75 100/) {
366: if ($max <$_) { $max = $_; last; }
1.103 matthew 367: }
1.112 matthew 368: #
1.113 matthew 369: my $title = &mt('Percent Difference');
1.114 matthew 370: my @labels = (1..scalar(@bins)-1);
1.103 matthew 371: my $graph = &Apache::loncommon::DrawBarGraph
1.114 matthew 372: ($title,'Percent Difference from Correct','Percent of Answers',
373: $max,['#33FF00','#FF3300'],\@labels,\@plot_correct,\@plot_incorrect,
1.103 matthew 374: {xskip=>1});
375: #
1.104 matthew 376: my $table = $graph.$/.
377: &numerical_bin_table(\@bins,\@labels,\@incorrect,\@correct,\@count).$/;
1.103 matthew 378: return $table;
379: }
380:
381: sub numerical_plot_differences {
1.112 matthew 382: my ($r,$responses,$stats) = @_;
1.103 matthew 383: #
1.112 matthew 384: my $total = $stats->{'submission_count'};
1.103 matthew 385: return '' if ($total == 0);
1.114 matthew 386: my $max_bins = 21;
1.113 matthew 387: my $min_bin_size = $stats->{'min_abs'};
388: my $low_bin = $stats->{'lowest_ans'}-$stats->{'max_bin_size'};
389: my $high_bin = $stats->{'highest_ans'}+$stats->{'max_bin_size'};
390: if ($high_bin > 0 && $low_bin > -$high_bin) {
391: $low_bin = -$high_bin;
392: } elsif ($low_bin < 0 && $high_bin < -$low_bin) {
393: $high_bin = -$low_bin;
394: }
395: if (($high_bin -$low_bin)/$min_bin_size * 2 > $max_bins) {
396: $min_bin_size = abs($high_bin - $low_bin) / $max_bins * 2;
397: }
1.103 matthew 398: my @bins;
1.113 matthew 399: for (my $num = $low_bin;$num <= $high_bin;$num+=($min_bin_size/2)) {
400: push(@bins,$num);
1.103 matthew 401: }
402: #
403: my @correct;
404: my @incorrect;
1.104 matthew 405: my @count;
1.112 matthew 406: while (my ($ans,$submissions) = each(%$responses)) {
1.104 matthew 407: while (my ($submission,$counts) = each(%$submissions)) {
408: my ($correct_count,$incorrect_count) = @$counts;
1.113 matthew 409: my $scaled_value = $submission-$ans;
1.114 matthew 410: if ($scaled_value < $bins[0]) {
411: $bins[0]=$scaled_value-1;
412: }
1.103 matthew 413: my $bin=0;
1.114 matthew 414: for ($bin=0;$bin<$#bins;$bin++) {
1.113 matthew 415: last if ($bins[$bin]>$scaled_value);
1.103 matthew 416: }
1.114 matthew 417: $correct[$bin-1]+=$correct_count;
418: $incorrect[$bin-1]+=$incorrect_count;
419: $count[$bin-1]+=$correct_count+$incorrect_count;
1.103 matthew 420: }
421: }
1.113 matthew 422: my @plot_correct = @correct;
423: my @plot_incorrect = @incorrect;
1.114 matthew 424: my $max;
1.103 matthew 425: for (my $i=0;$i<=$#bins;$i++) {
1.113 matthew 426: $plot_correct[$i] *= 100/$total;
427: $plot_incorrect[$i] *= 100/$total;
1.114 matthew 428: if (! defined($max) ||
429: $max < $plot_correct[$i]+$plot_incorrect[$i] ) {
430: $max = $plot_correct[$i]+$plot_incorrect[$i];
431: }
432: }
433: foreach (qw/1 5 10 15 20 25 30 40 50 75 100/) {
434: if ($max <$_) { $max = $_; last; }
1.103 matthew 435: }
1.113 matthew 436: #
437: my $title = &mt('Difference between submission and correct');
1.114 matthew 438: my @labels = (1..scalar(@bins)-1);
1.103 matthew 439: my $graph = &Apache::loncommon::DrawBarGraph
1.114 matthew 440: ($title,'Difference from Correct','Percent of Answers',
441: $max,['#33FF00','#FF3300'],\@labels,\@plot_correct,\@plot_incorrect,
1.104 matthew 442: {xskip=>1});
1.103 matthew 443: #
1.104 matthew 444: my $table = $graph.$/.
445: &numerical_bin_table(\@bins,\@labels,\@incorrect,\@correct,\@count).$/;
446: return $table;
447: }
448:
449: sub numerical_classify_responses {
450: my ($full_row_data,$correct,$function) = @_;
451: my %submission_data;
452: my %students;
1.112 matthew 453: my %stats;
1.104 matthew 454: my $max=0;
455: foreach my $row (@$full_row_data) {
456: my %subm = &hashify_attempt($row);
457: if (ref($correct) eq 'HASH') {
1.112 matthew 458: my $s_correct = $correct->{$subm{'student'}};
459: $subm{'correct'} = $s_correct->{'answer'};
460: foreach my $item ('unit','ans_low','ans_high') {
461: $subm{$item} = $s_correct->{$item};
462: }
1.106 matthew 463: } else { # This probably never happens....
464: $subm{'correct'} = $correct->{'answer'};
465: $subm{'unit'} = $correct->{'unit'};
1.104 matthew 466: }
1.112 matthew 467: #
468: my $abs_low =abs($subm{'correct'}-$subm{'ans_low'});
469: my $abs_high=abs($subm{'correct'}-$subm{'ans_high'});
470: if (! defined($stats{'min_abs'}) ||
471: $stats{'min_abs'} > $abs_low) {
472: $stats{'min_abs'} = $abs_low;
473: }
474: if ($stats{'min_abs'} > $abs_high) {
475: $stats{'min_abs'} = $abs_high;
476: }
477: if (! defined($stats{'max_abs'}) ||
478: $stats{'max_abs'} < $abs_low) {
479: $stats{'max_abs'} = $abs_low;
480: }
481: if ($stats{'max_abs'} < $abs_high) {
482: $stats{'max_abs'} = $abs_high;
483: }
484: my $low_percent = 100 * abs($abs_low / $subm{'correct'});
485: my $high_percent = 100 * abs($abs_high / $subm{'correct'});
486: if (! defined($stats{'min_percent'}) ||
487: $stats{'min_percent'} > $low_percent) {
488: $stats{'min_percent'} = $low_percent;
489: }
490: if ($stats{'min_percent'} > $high_percent) {
491: $stats{'min_percent'} = $high_percent;
492: }
493: if (! defined($stats{'max_percent'}) ||
494: $stats{'max_percent'} < $low_percent) {
495: $stats{'max_percent'} = $low_percent;
496: }
497: if ($stats{'max_percent'} < $high_percent) {
498: $stats{'max_percent'} = $high_percent;
499: }
500: if (! defined($stats{'lowest_ans'}) ||
501: $stats{'lowest_ans'} > $subm{'correct'}) {
502: $stats{'lowest_ans'} = $subm{'correct'};
503: }
504: if (! defined($stats{'highest_ans'}) ||
505: $stats{'highest_ans'} < $subm{'correct'}) {
506: $stats{'highest_ans'} = $subm{'correct'};
507: }
508: #
1.104 matthew 509: $subm{'submission'} =~ s/=\d+\s*$//;
510: if (&$function(\%subm)) {
1.106 matthew 511: my $scaled = '1';
512: my ($sname,$sdom) = split(':',$subm{'student'});
1.109 matthew 513: my ($myunit,$mysub) = ($subm{'unit'},$subm{'submission'});
514: my $result =
515: &capa::caparesponse_get_real_response($myunit,
516: $mysub,
517: \$scaled);
1.114 matthew 518: # &Apache::lonnet::logthis('scaled = '.$scaled.' result ='.$result);
1.109 matthew 519: next if (! defined($scaled));
1.112 matthew 520: # next if ($result ne '6');
1.109 matthew 521: my $submission = $scaled;
1.104 matthew 522: $students{$subm{'student'}}++;
1.112 matthew 523: $stats{'submission_count'}++;
1.104 matthew 524: if (&numerical_submission_is_correct($subm{'award'})) {
1.112 matthew 525: $stats{'correct_count'}++;
1.104 matthew 526: $submission_data{$subm{'correct'}}->{$submission}->[0]++;
527: } elsif (&numerical_submission_is_incorrect($subm{'award'})) {
1.112 matthew 528: $stats{'incorrect_count'}++;
1.104 matthew 529: $submission_data{$subm{'correct'}}->{$submission}->[1]++;
530: }
531: }
532: }
1.112 matthew 533: $stats{'students'}=scalar(keys(%students));
534: return (\%submission_data,\%stats);
1.104 matthew 535: }
536:
537: sub numerical_submission_is_correct {
538: my ($award) = @_;
539: if ($award =~ /^(APPROX_ANS|EXACT_ANS)$/) {
540: return 1;
541: } else {
542: return 0;
543: }
544: }
545:
546: sub numerical_submission_is_incorrect {
547: my ($award) = @_;
548: if ($award =~ /^(INCORRECT)$/) {
549: return 1;
550: } else {
551: return 0;
552: }
553: }
554:
555: sub numerical_bin_table {
556: my ($bins,$labels,$incorrect,$correct,$count)=@_;
557: my $table =
558: '<table><tr><th>'.&mt('Bar').'</th>'.
559: '<th colspan="3">'.&mt('Range').'</th>'.
560: '<th>'.&mt('Incorrect').'</th>'.
561: '<th>'.&mt('Correct').'</th>'.
562: '<th>'.&mt('Count').'</th>'.
563: '</tr>'.$/;
1.113 matthew 564: for (my $i=0;$i<scalar(@{$bins}-1);$i++) {
565: my $lownum = $bins->[$i];
1.114 matthew 566: if ($i == 0) { $lownum = '-∞'; }
1.113 matthew 567: my $highnum = $bins->[$i+1];
1.114 matthew 568: if ($i == scalar(@{$bins})-2) { $highnum = '∞'; }
1.103 matthew 569: $table .=
570: '<tr>'.
1.104 matthew 571: '<td>'.$labels->[$i].'</td>'.
1.103 matthew 572: '<td align="right">'.$lownum.'</td>'.
573: '<td> - </td>'.
1.104 matthew 574: '<td align="right">'.$highnum.'</td>'.
575: '<td align="right">'.$incorrect->[$i].'</td>'.
576: '<td align="right">'.$correct->[$i].'</td>'.
577: '<td align="right">'.$count->[$i].'</td>'.
578: '</tr>'.$/;
1.103 matthew 579: }
1.104 matthew 580: $table.= '</table>';
1.103 matthew 581: return $table;
1.66 matthew 582: }
583:
1.106 matthew 584: sub numerical_determine_answers {
1.103 matthew 585: my ($r,$resource,$partid,$respid,$students)=@_;
586: my $c = $r->connection();
1.78 matthew 587: #
1.112 matthew 588: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin
589: ($r,'Student Answer Compilation Status',
590: 'Student Answer Compilation Progress', scalar(@$students),
591: 'inline',undef,'Statistics','stats_status');
1.103 matthew 592: #
593: # Read in the cache (if it exists) before we start timing things.
594: &Apache::lonstathelpers::ensure_proper_cache($resource->{'symb'});
595: #
596: my $correct;
597: my %answers;
598: foreach my $student (@$students) {
599: last if ($c->aborted());
600: my $sname = $student->{'username'};
601: my $sdom = $student->{'domain'};
602: # analyze problem
603: my $analysis =
604: &Apache::lonstathelpers::analyze_problem_as_student($resource,
605: $sname,
606: $sdom);
607: # make the key
608: my $key = $partid.'.'.$respid;
1.112 matthew 609: foreach my $item ('answer','unit','ans_high','ans_low') {
610: $correct->{$sname.':'.$sdom}->{$item} =
611: $analysis->{$key.'.'.$item}->[0];
612: }
1.103 matthew 613: $answers{$analysis->{$key.'.answer'}->[0]}++;
1.112 matthew 614: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
615: &mt('last student'));
1.82 matthew 616: }
1.103 matthew 617: &Apache::lonstathelpers::write_analysis_cache();
1.112 matthew 618: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.106 matthew 619: return ($correct,\%answers);
1.103 matthew 620: }
621:
1.104 matthew 622: #
623: # Inputs: $r, $width, $height, $data
624: # $n = number of students
625: # $data = hashref of $answer => $frequency pairs
1.103 matthew 626: sub numerical_one_dimensional_plot {
1.104 matthew 627: my ($r,$width,$height,$data)=@_;
1.78 matthew 628: #
1.103 matthew 629: # Compute data -> image scaling factors
1.78 matthew 630: my $max_y = 0;
1.103 matthew 631: my $min_x = undef;
632: my $max_x = undef;
1.104 matthew 633: my $n = 0;
1.103 matthew 634: while (my ($answer,$count) = each(%$data)) {
1.104 matthew 635: $n+=$count;
1.103 matthew 636: $max_y = $count if ($max_y < $count);
637: if (! defined($min_x) || $answer < $min_x) {
638: $min_x = $answer;
639: }
640: if (! defined($max_x) || $answer > $max_x) {
641: $max_x = $answer;
642: }
1.78 matthew 643: }
1.103 matthew 644: #
1.106 matthew 645: my $min_max_difference = $max_x - $min_x;
646: if (! defined($min_max_difference) || $min_max_difference == 0) {
647: $min_max_difference = 1;
648: }
649: my $h_scale = ($width-10)/$min_max_difference;
1.103 matthew 650: #
1.78 matthew 651: my $ticscale = 5;
652: if ($max_y * $ticscale > $height/2) {
653: $ticscale = int($height/2/$max_y);
654: $ticscale = 1 if ($ticscale < 1);
655: }
656: #
657: # Create the plot
658: my $plot =
659: qq{<drawimage width="$width" height="$height" bgcolor="transparent" >};
1.103 matthew 660: while (my ($answer,$count) = each(%$data)) {
661: my $xloc = 5+$h_scale*($answer - $min_x);
662: my $top = $height/2-$count*$ticscale;
663: my $bottom = $height/2+$count*$ticscale;
664: $plot .= &line($xloc,$top,$xloc,$bottom,'888888',1);
1.78 matthew 665: }
666: #
667: # Put the scale on last to ensure it is on top of the data.
1.103 matthew 668: if ($min_x < 0 && $max_x > 0) {
669: my $circle_x = 5+$h_scale*abs($min_x); # '0' in data coordinates
1.78 matthew 670: my $r = 4;
671: $plot .= &line(5,$height/2,$circle_x-$r,$height/2,'000000',1);
672: $plot .= &circle($circle_x,$height/2,$r+1,'000000');
673: $plot .= &line($circle_x+$r,$height/2,$width-5,$height/2,'000000',1);
674: } else {
675: $plot .= &line(5,$height/2,$width-5,$height/2,'000000',1);
676: }
677: $plot .= '</drawimage>';
678: my $plotresult = &Apache::lonxml::xmlparse($r,'web',$plot);
679: my $result = '<table>'.
680: '<tr><td colspan="3" align="center">'.
1.103 matthew 681: '<font size="+2">'.&mt('Distribution of correct answers').'</font>'.
682: '<br />'.&mt('[_1] students, [_2] distinct correct answers',
683: $n,scalar(keys(%$data))).
684: '<br />'.&mt('Maximum number of coinciding values: [_1]',$max_y).
1.78 matthew 685: '</td></tr>'.
686: '<tr>'.
1.103 matthew 687: '<td valign="center">'.$min_x.'</td>'.
1.78 matthew 688: '<td>'.$plotresult.'</td>'.
1.103 matthew 689: '<td valign="center">'.$max_x.'</td>'.
1.78 matthew 690: '</tr>'.
691: '</table>';
692: return $result;
693: }
694:
695: ##
696: ## Helper subroutines for <drawimage>.
697: ## These should probably go somewhere more suitable soon.
698: sub line {
699: my ($x1,$y1,$x2,$y2,$color,$thickness) = @_;
1.103 matthew 700: return qq{<line x1="$x1" y1="$y1" x2="$x2" y2="$y2" color="$color" thickness="$thickness" />};
1.78 matthew 701: }
702:
1.82 matthew 703: sub text {
704: my ($x,$y,$color,$text,$font,$direction) = @_;
705: if (! defined($font) || $font !~ /^(tiny|small|medium|large|giant)$/) {
706: $font = 'medium';
707: }
708: if (! defined($direction) || $direction ne 'vertical') {
709: $direction = '';
710: }
711: return qq{<text x="$x" y="$y" color="$color" font="$font" direction="$direction" >$text</text>};
712: }
713:
1.78 matthew 714: sub rectangle {
715: my ($x1,$y1,$x2,$y2,$color,$thickness,$filled) = @_;
716: return qq{<rectangle x1="$x1" y1="$y1" x2="$x2" y2="$y2" color="$color" thickness="$thickness" filled="$filled" />};
717: }
718:
719: sub arc {
720: my ($x,$y,$width,$height,$start,$end,$color,$thickness,$filled)=@_;
721: return qq{<arc x="$x" y="$y" width="$width" height="$height" start="$start" end="$end" color="$color" thickness="$thickness" filled="$filled" />};
722: }
723:
724: sub circle {
725: my ($x,$y,$radius,$color,$thickness,$filled)=@_;
726: return &arc($x,$y,$radius,$radius,0,360,$color,$thickness,$filled);
1.68 matthew 727: }
728:
1.47 matthew 729: #########################################################
730: #########################################################
731: ##
732: ## Radio Response Routines
733: ##
734: #########################################################
735: #########################################################
1.97 matthew 736: sub radio_response_analysis {
1.94 matthew 737: my ($r,$problem,$problem_analysis,$students) = @_;
1.97 matthew 738: #
739: if ($ENV{'form.AnalyzeOver'} !~ /^(tries|time)$/) {
1.94 matthew 740: $r->print('Bad request');
741: }
1.97 matthew 742: #
1.94 matthew 743: my ($resource,$partid,$respid) = ($problem->{'resource'},
744: $problem->{'part'},
745: $problem->{'respid'});
746: #
747: my $analysis_html;
748: my $foildata = $problem_analysis->{'_Foils'};
749: my ($table,$foils,$concepts) = &build_foil_index($problem_analysis);
1.106 matthew 750: if (! defined($concepts)) {
751: $concepts = [];
752: }
1.97 matthew 753: #
1.98 matthew 754: my %true_foils;
1.97 matthew 755: my $num_true = 0;
1.98 matthew 756: if (! $problem_analysis->{'answercomputed'}) {
757: foreach my $foil (@$foils) {
758: if ($foildata->{$foil}->{'value'} eq 'true') {
759: $true_foils{$foil}++;
760: }
1.97 matthew 761: }
1.98 matthew 762: $num_true = scalar(keys(%true_foils));
1.97 matthew 763: }
764: #
1.94 matthew 765: $analysis_html .= $table;
766: # Gather student data
767: my $response_data = &Apache::loncoursedata::get_response_data
768: (\@Apache::lonstatistics::SelectedSections,
769: $Apache::lonstatistics::enrollment_status,
1.116 matthew 770: $resource->symb,$respid);
1.94 matthew 771: my $correct; # either a hash reference or a scalar
772: if ($problem_analysis->{'answercomputed'} || scalar(@$concepts) > 1) {
773: # This takes a while for large classes...
774: &Apache::lonstathelpers::GetStudentAnswers($r,$problem,$students,
775: 'Statistics',
776: 'stats_status');
777: foreach my $student (@$students) {
778: my ($idx,@remainder) = split('&',$student->{'answer'});
779: my ($answer) = ($remainder[$idx]=~/^(.*)=([^=]*)$/);
780: $correct->{$student->{'username'}.':'.$student->{'domain'}}=
781: &Apache::lonnet::unescape($answer);
782: }
783: } else {
784: foreach my $foil (keys(%$foildata)) {
785: if ($foildata->{$foil}->{'value'} eq 'true') {
786: $correct = $foildata->{$foil}->{'name'};
787: }
788: }
789: }
1.97 matthew 790: #
791: if (! defined($response_data) || ref($response_data) ne 'ARRAY' ) {
1.94 matthew 792: $analysis_html = '<h2>'.
793: &mt('There is no submission data for this resource').
794: '</h2>';
795: $r->print($analysis_html);
796: return;
797: }
798: #
799: $analysis_html.='<table>';
1.97 matthew 800: for (my $plot_num = 1;$plot_num<=$ENV{'form.NumPlots'};$plot_num++) {
1.94 matthew 801: # classify data ->correct foil -> selected foil
1.97 matthew 802: my ($restriction_function,
803: $correct_foil_title,$incorrect_foil_title,
804: $pre_graph_text,$post_graph_text,
805: $no_data_text,@extra_data);
806: if ($ENV{'form.AnalyzeOver'} eq 'tries') {
807: $restriction_function = sub {($_[0]->{'tries'} == $plot_num?1:0)};
808: $correct_foil_title = 'Attempt '.$plot_num;
809: $incorrect_foil_title = 'Attempt '.$plot_num;
810: $pre_graph_text =
811: 'Attempt [_1], [_2] submissions, [_3] correct, [_4] incorrect';
812: $post_graph_text = '';
813: $no_data_text = 'No data exists for attempt [_1]';
814: } elsif ($ENV{'form.AnalyzeOver'} eq 'time') {
815: my $starttime = &Apache::lonhtmlcommon::get_date_from_form
816: ('startdate_'.$plot_num);
817: my $endtime = &Apache::lonhtmlcommon::get_date_from_form
818: ('enddate_'.$plot_num);
819: ($starttime,$endtime) = &ensure_start_end_times
820: ($starttime,$endtime,
821: &get_time_from_row($response_data->[0]),
822: &get_time_from_row($response_data->[-1]),
823: $plot_num);
824: $pre_graph_text =
1.102 matthew 825: 'Data from [_6] to [_7]<br /> [_2] submissions from [_5] students, [_3] correct, [_4] incorrect';
1.97 matthew 826: $extra_data[0] = &Apache::lonlocal::locallocaltime($starttime);
827: $extra_data[1] = &Apache::lonlocal::locallocaltime($endtime);
828: #
829: $post_graph_text =
830: &mt('Start time: [_1]',
831: &Apache::lonhtmlcommon::date_setter
832: ('Statistics','startdate_'.$plot_num,$starttime)).
833: '<br />'.
834: &mt('End time: [_1]',
835: &Apache::lonhtmlcommon::date_setter
836: ('Statistics','enddate_'.$plot_num,$endtime));
837: $restriction_function =
838: sub {
839: my $t = $_[0]->{'timestamp'};
840: if ($t >= $starttime && $t < $endtime) {
841: return 1;
842: } else {
843: return 0;
844: }
845: };
846: $no_data_text = 'No data for [_5] to [_6]';
847: }
848: my $foil_choice_data =
1.103 matthew 849: &classify_response_data($response_data,$correct,
850: $restriction_function);
1.97 matthew 851: # &Apache::lonstathelpers::log_hash_ref($foil_choice_data);
1.94 matthew 852: my $answers;
853: if (ref($correct)) {
854: my %tmp;
855: foreach my $foil (values(%$correct)) {
856: $tmp{$foil}++;
857: }
858: $answers = [keys(%tmp)];
859: } else {
860: $answers = [$correct];
861: }
862: # Concept Plot
863: my $concept_plot = '';
864: if (scalar(@$concepts) > 1) {
865: $concept_plot = &RR_concept_plot($concepts,$foil_choice_data,
1.97 matthew 866: 'Correct Concepts');
1.94 matthew 867: }
868: # % Choosing plot
869: my $choice_plot = &RR_create_percent_selected_plot
1.97 matthew 870: ($concepts,$foils,$foil_choice_data,$correct_foil_title);
1.94 matthew 871: # for each correct foil, how did they mark it? (stacked bar graph)
1.97 matthew 872: my ($stacked_plot,$count_by_foil);
873: if ($problem_analysis->{'answercomputed'} || $num_true > 1) {
874: ($stacked_plot,$count_by_foil) =
875: &RR_create_stacked_selection_plot($foils,$foil_choice_data,
1.98 matthew 876: $incorrect_foil_title,
877: \%true_foils);
1.97 matthew 878: }
1.94 matthew 879: #
880: if ($concept_plot ne '' ||
1.97 matthew 881: $choice_plot ne '' ||
1.94 matthew 882: $stacked_plot ne '') {
1.97 matthew 883: my $correct = $foil_choice_data->{'_correct'};
884: if (! defined($correct) || $correct eq '') {
885: $correct = 0;
886: }
887: my $incorrect =
888: $analysis_html.= '<tr><td colspan="4" align="center">'.
889: '<font size="+1">'.
890: &mt($pre_graph_text,
891: $plot_num,$foil_choice_data->{'_count'},
1.102 matthew 892: $correct,
1.97 matthew 893: $foil_choice_data->{'_count'}-$correct,
1.102 matthew 894: $foil_choice_data->{'_students'},
1.97 matthew 895: @extra_data).
896: '</td></tr>'.$/;
1.94 matthew 897: $analysis_html.=
898: '<tr>'.
899: '<td>'.$concept_plot.'</td>'.
900: '<td>'.$choice_plot.'</td>';
901: if ($stacked_plot ne '') {
902: $analysis_html .=
1.97 matthew 903: '<td>'.$stacked_plot.'</td>'.
904: '<td>'.&build_foil_key($foils,$count_by_foil).'</td>';
1.94 matthew 905: } else {
906: $analysis_html .= ('<td></td>'x2);
907: }
908: $analysis_html.='</tr>'.$/;
1.97 matthew 909: if (defined($post_graph_text)) {
910: $analysis_html.= '<tr><td colspan="4" align="center">'.
911: $post_graph_text.'</td></tr>'.$/;
912: }
913: } elsif ($no_data_text ne '') {
914: $analysis_html.='<tr><td colspan="4" align="center">'.
915: &mt($no_data_text,
916: $plot_num,$foil_choice_data->{'_count'},
917: $correct,
918: $foil_choice_data->{'_count'}-$correct,
919: @extra_data);
920: if (defined($post_graph_text)) {
921: $analysis_html.='<br />'.$post_graph_text;
922: }
923: $analysis_html.='</td></tr>'.$/;
1.94 matthew 924: }
1.97 matthew 925: } # end of loop for plots
1.94 matthew 926: $analysis_html.='</table>';
927: $r->print($analysis_html);
928: }
929:
1.97 matthew 930: sub ensure_start_end_times {
931: my ($start,$end,$first,$last,$plot_num) = @_;
932: if (! defined($start) || ! defined($end)) {
933: my $sec_in_day = 86400;
934: my ($sday,$smon,$syear) =
935: (localtime($last - $sec_in_day*($plot_num-1)))[3..5];
936: $start = &Time::Local::timelocal(0,0,0,$sday,$smon,$syear);
937: $end = $start + $sec_in_day;
938: if ($plot_num == $ENV{'form.NumPlots'}) {
939: $start = $first;
940: }
941: }
942: return ($start,$end);
943: }
1.94 matthew 944:
945: sub RR_concept_plot {
946: my ($concepts,$foil_data,$title) = @_;
947: #
948: my %correct_by_concept;
949: my %incorrect_by_concept;
950: my %true;
951: foreach my $concept (@$concepts) {
952: foreach my $foil (@{$concept->{'foils'}}) {
953: next if (! exists($foil_data->{$foil}));
954: foreach my $choice (keys(%{$foil_data->{$foil}})) {
955: if ($choice eq $foil) {
956: $correct_by_concept{$concept->{'name'}} +=
957: $foil_data->{$foil}->{$choice};
958: } else {
959: $incorrect_by_concept{$concept->{'name'}} +=
960: $foil_data->{$foil}->{$choice};
961: }
962: }
963: }
964: }
965: #
966: # need arrays for incorrect and correct because we want to use different
967: # colors for them
968: my @correct;
969: #
970: my $total =0;
971: for (my $i=0;$i<scalar(@$concepts);$i++) {
972: my $concept = $concepts->[$i];
973: $correct[$i] = $correct_by_concept{$concept->{'name'}};
974: $total += $correct_by_concept{$concept->{'name'}}+
975: $incorrect_by_concept{$concept->{'name'}};
976: }
977: if ($total == 0) { return ''; };
978: for (my $i=0;$i<=$#correct;$i++) {
979: $correct[$i] = sprintf('%0f',$correct[$i]/$total*100);
980: }
981: my $xlabel = 'concept';
982: my $plot= &Apache::loncommon::DrawBarGraph($title,
983: $xlabel,
984: 'Percent Choosing',
985: 100,
986: ['#33ff00','#ff3300'],
987: undef,
988: \@correct);
989: return $plot;
990: }
991:
992: sub RR_create_percent_selected_plot {
1.97 matthew 993: my ($concepts,$foils,$foil_data,$title) = @_;
1.94 matthew 994: #
1.99 matthew 995: if ($foil_data->{'_count'} == 0) { return ''; };
996: my %correct_selections;
997: my %incorrect_selections;
1.94 matthew 998: foreach my $foil (@$foils) {
1.101 matthew 999: # foil_data has format $foil_data->{true_foil}->{selected foil}=count
1.94 matthew 1000: next if (! exists($foil_data->{$foil}));
1001: while (my ($f,$count)= each(%{$foil_data->{$foil}})) {
1.99 matthew 1002: if ($f eq $foil) {
1003: $correct_selections{$foil} += $count;
1004: } else {
1.101 matthew 1005: $incorrect_selections{$f} += $count;
1.99 matthew 1006: }
1.94 matthew 1007: }
1008: }
1009: #
1010: # need arrays for incorrect and correct because we want to use different
1011: # colors for them
1012: my @correct;
1013: my @incorrect;
1014: #
1.99 matthew 1015: my $total = $foil_data->{'_count'};
1.94 matthew 1016: for (my $i=0;$i<scalar(@$foils);$i++) {
1017: my $foil = $foils->[$i];
1.99 matthew 1018: $correct[$i] = $correct_selections{$foil};
1019: $incorrect[$i] = $incorrect_selections{$foil};
1.94 matthew 1020: }
1021: for (my $i=0;$i<=$#correct;$i++) {
1.99 matthew 1022: $correct[$i] = sprintf('%2f',$correct[$i]/$total*100);
1.94 matthew 1023: }
1024: for (my $i=0;$i<=$#incorrect;$i++) {
1.99 matthew 1025: $incorrect[$i] = sprintf('%2f',$incorrect[$i]/$total*100);
1.94 matthew 1026: }
1.97 matthew 1027: #
1028: # Put a blank in the data sets between concepts, if there are concepts
1029: my @labels;
1030: if (defined($concepts) && scalar(@$concepts) > 1) {
1031: my @new_correct;
1032: my @new_incorrect;
1033: my $foil_count = 0;
1034: foreach my $concept (@$concepts) {
1035: foreach (@{$concept->{'foils'}}) {
1036: push(@new_correct, $correct[$foil_count]);
1037: push(@new_incorrect,$incorrect[$foil_count]);
1038: push(@labels,++$foil_count);
1039: }
1040: push(@new_correct,'');
1041: push(@new_incorrect,'');
1042: push(@labels,'');
1043: }
1044: @correct = @new_correct;
1045: @incorrect = @new_incorrect;
1046: } else {
1047: @labels = (1 .. scalar(@correct));
1048: }
1049: #
1.94 matthew 1050: my $xlabel = 'foil chosen';
1051: my $plot= &Apache::loncommon::DrawBarGraph($title,
1052: $xlabel,
1053: 'Percent Choosing',
1054: 100,
1055: ['#33ff00','#ff3300'],
1.97 matthew 1056: \@labels,
1.94 matthew 1057: \@correct,
1058: \@incorrect);
1059: return $plot;
1060: }
1061:
1062: sub RR_create_stacked_selection_plot {
1.98 matthew 1063: my ($foils,$foil_data,$title,$true_foils)=@_;
1.94 matthew 1064: #
1.97 matthew 1065: my @dataset; # array of array refs - multicolor rows $datasets[row]->[col]
1.94 matthew 1066: my @labels;
1.97 matthew 1067: my $count;
1068: my %column; # maps foil name to column in @datasets
1.94 matthew 1069: for (my $i=0;$i<scalar(@$foils);$i++) {
1.98 matthew 1070: my $foil = $foils->[$i];
1071: if (defined($true_foils) && scalar(keys(%$true_foils)) > 0 ) {
1072: next if (! $true_foils->{$foil} );
1073: push(@labels,$i+1);
1074: } else {
1075: next if (! exists($foil_data->{$foil}));
1076: push(@labels,$i+1);
1077: }
1.94 matthew 1078: next if (! exists($foil_data->{$foils->[$i]}));
1.98 matthew 1079: $column{$foil}= $count++;
1.94 matthew 1080: for (my $j=0;$j<scalar(@$foils);$j++) {
1081: my $value = 0;
1082: if ($i != $j ) {
1.98 matthew 1083: $value += $foil_data->{$foil}->{$foils->[$j]};
1.94 matthew 1084: }
1.98 matthew 1085: $dataset[$j]->[$column{$foil}]=$value;
1.94 matthew 1086: }
1087: }
1088: #
1089: return '' if (! scalar(keys(%column)));
1090: #
1091: my $grand_total = 0;
1092: my %count_per_foil;
1093: while (my ($foil,$bar) = each (%column)) {
1094: my $bar_total = 0;
1095: for (my $j=0;$j<scalar(@dataset);$j++) {
1096: $bar_total += $dataset[$j]->[$bar];
1097: }
1098: next if ($bar_total == 0);
1099: for (my $j=0;$j<scalar(@dataset);$j++) {
1100: $dataset[$j]->[$bar] =
1101: sprintf('%2f',$dataset[$j]->[$bar]/$bar_total * 100);
1102: }
1.97 matthew 1103: $count_per_foil{$foil}=' ( '.$bar_total.' )';
1.94 matthew 1104: $grand_total += $bar_total;
1105: }
1106: if ($grand_total == 0) {
1107: return ('',undef);
1108: }
1109: my @empty_row = ();
1110: foreach (@{$dataset[0]}) {
1111: push(@empty_row,0);
1112: }
1113: #
1114: my $graph = &Apache::loncommon::DrawBarGraph
1115: ($title,'Correct Foil','foils chosen Incorrectly',
1116: 100,$plotcolors,\@labels,\@empty_row,@dataset);
1117: return ($graph,\%count_per_foil);
1118: }
1119:
1.103 matthew 1120:
1121: #########################################################
1122: #########################################################
1123: ##
1124: ## Misc routines
1125: ##
1126: #########################################################
1127: #########################################################
1128:
1.94 matthew 1129: # if $correct is a hash ref, it is assumed to be indexed by student names.
1130: # the values are assumed to be hash refs with a key of 'answer'.
1.103 matthew 1131: sub classify_response_data {
1.94 matthew 1132: my ($full_row_data,$correct,$function) = @_;
1133: my %submission_data;
1.102 matthew 1134: my %students;
1.103 matthew 1135: my $max=0;
1.94 matthew 1136: foreach my $row (@$full_row_data) {
1137: my %subm = &hashify_attempt($row);
1138: if (ref($correct) eq 'HASH') {
1139: $subm{'correct'} = $correct->{$subm{'student'}};
1140: } else {
1141: $subm{'correct'} = $correct;
1142: }
1143: $subm{'submission'} =~ s/=\d+\s*$//;
1144: if (&$function(\%subm)) {
1.102 matthew 1145: $students{$subm{'student'}}++;
1.97 matthew 1146: $submission_data{'_count'}++;
1147: if (&submission_is_correct($subm{'award'})) {
1148: $submission_data{'_correct'}++;
1149: }
1.103 matthew 1150:
1151: if($max<++$submission_data{$subm{'correct'}}->{$subm{'submission'}}) {
1152: $max=$submission_data{$subm{'correct'}}->{$subm{'submission'}};
1153: }
1.94 matthew 1154: }
1155: }
1.103 matthew 1156: $submission_data{'_max'} = $max;
1.102 matthew 1157: $submission_data{'_students'}=scalar(keys(%students));
1.94 matthew 1158: return \%submission_data;
1159: }
1160:
1161:
1.33 matthew 1162: #########################################################
1163: #########################################################
1164: ##
1.46 matthew 1165: ## Option Response Routines
1.33 matthew 1166: ##
1167: #########################################################
1168: #########################################################
1.46 matthew 1169: sub OptionResponseAnalysis {
1.88 matthew 1170: my ($r,$problem,$problem_data,$Students) = @_;
1.56 matthew 1171: my ($resource,$respid) = ($problem->{'resource'},
1172: $problem->{'respid'});
1173: # Note: part data is not needed.
1.82 matthew 1174: my $PerformanceData = &Apache::loncoursedata::get_response_data
1175: (\@Apache::lonstatistics::SelectedSections,
1176: $Apache::lonstatistics::enrollment_status,
1.116 matthew 1177: $resource->symb,$respid);
1.46 matthew 1178: if (! defined($PerformanceData) ||
1179: ref($PerformanceData) ne 'ARRAY' ) {
1180: $r->print('<h2>'.
1181: &mt('There is no student data for this problem.').
1182: '</h2>');
1183: } else {
1184: $r->rflush();
1.111 matthew 1185: if ($ENV{'form.AnalyzeOver'} eq 'tries') {
1186: my $analysis_html = &OR_tries_analysis($r,
1187: $PerformanceData,
1188: $problem_data);
1189: $r->print($analysis_html);
1190: $r->rflush();
1191: } elsif ($ENV{'form.AnalyzeOver'} eq 'time') {
1192: my $analysis_html = &OR_time_analysis($PerformanceData,
1193: $problem_data);
1194: $r->print($analysis_html);
1.46 matthew 1195: $r->rflush();
1.39 matthew 1196: } else {
1.111 matthew 1197: $r->print('<h2>'.
1198: &mt('The analysis you have selected is '.
1199: 'not supported at this time').
1200: '</h2>');
1.36 matthew 1201: }
1.39 matthew 1202: }
1203: }
1204:
1.33 matthew 1205: #########################################################
1.46 matthew 1206: #
1.94 matthew 1207: # Option Response: tries Analysis
1.46 matthew 1208: #
1.33 matthew 1209: #########################################################
1.57 matthew 1210: sub OR_tries_analysis {
1.43 matthew 1211: my ($r,$PerformanceData,$ORdata) = @_;
1.33 matthew 1212: my $mintries = 1;
1213: my $maxtries = $ENV{'form.NumPlots'};
1.39 matthew 1214: my ($table,$Foils,$Concepts) = &build_foil_index($ORdata);
1.107 matthew 1215: if (! defined($Concepts)) {
1216: $Concepts = [];
1217: }
1.88 matthew 1218: my %response_data = &OR_analyze_by_tries($r,$PerformanceData,
1.36 matthew 1219: $mintries,$maxtries);
1.42 matthew 1220: my $analysis = '';
1.31 matthew 1221: #
1.88 matthew 1222: # Compute the data necessary to make the plots
1223: my @foil_plot;
1224: my @concept_data;
1225: for (my $j=0;$j<=scalar(@$Concepts);$j++) {
1226: my $concept = $Concepts->[$j];
1.75 matthew 1227: foreach my $foilid (@{$concept->{'foils'}}) {
1.76 matthew 1228: for (my $try=$mintries;$try<=$maxtries;$try++) {
1.88 matthew 1229: # concept analysis data
1.93 matthew 1230: $concept_data[$j]->[$try]->{'_correct'} +=
1.88 matthew 1231: $response_data{$foilid}->[$try]->{'_correct'};
1.93 matthew 1232: $concept_data[$j]->[$try]->{'_total'} +=
1.88 matthew 1233: $response_data{$foilid}->[$try]->{'_total'};
1234: #
1235: # foil analysis data
1236: if ($response_data{$foilid}->[$try]->{'_total'} == 0) {
1237: push(@{$foil_plot[$try]->{'_correct'}},0);
1.42 matthew 1238: } else {
1.88 matthew 1239: push(@{$foil_plot[$try]->{'_correct'}},
1240: 100*$response_data{$foilid}->[$try]->{'_correct'}/
1241: $response_data{$foilid}->[$try]->{'_total'});
1.75 matthew 1242: }
1243: foreach my $option (@{$ORdata->{'_Options'}}) {
1.88 matthew 1244: push(@{$foil_plot[$try]->{'_total'}},
1245: $response_data{$foilid}->[$try]->{'_total'});
1246: if ($response_data{$foilid}->[$try]->{'_total'} == 0) {
1247: push (@{$foil_plot[$try]->{$option}},0);
1.39 matthew 1248: } else {
1.88 matthew 1249: if ($response_data{$foilid}->[$try]->{'_total'} ==
1250: $response_data{$foilid}->[$try]->{'_correct'}) {
1251: push(@{$foil_plot[$try]->{$option}},0);
1.75 matthew 1252: } else {
1.88 matthew 1253: push (@{$foil_plot[$try]->{$option}},
1.76 matthew 1254: 100 *
1.88 matthew 1255: $response_data{$foilid}->[$try]->{$option} /
1256: ($response_data{$foilid}->[$try]->{'_total'}
1.76 matthew 1257: -
1.88 matthew 1258: $response_data{$foilid}->[$try]->{'_correct'}
1.76 matthew 1259: ));
1.75 matthew 1260: }
1.39 matthew 1261: }
1.76 matthew 1262: } # End of foreach my $option
1.36 matthew 1263: }
1.76 matthew 1264: } # End of foreach my $foilid
1.88 matthew 1265: } # End of concept loops
1.42 matthew 1266: #
1267: # Build a table for the plots
1.96 matthew 1268: my $analysis_html = "<br /><table>\n";
1.75 matthew 1269: my $optionkey = &build_option_index($ORdata);
1.88 matthew 1270: my $num_concepts = 1;
1271: if (defined($Concepts)) { $num_concepts = scalar(@$Concepts); }
1272: #
1.75 matthew 1273: for (my $try=$mintries;$try<=$maxtries;$try++) {
1.92 matthew 1274: if (! defined($response_data{'_total'}->[$try]) ||
1275: $response_data{'_total'}->[$try] == 0) {
1276: if ($try > 1) {
1277: $analysis_html.= '<tr><td align="center" colspan="4"><b>'.
1278: &mt('None of the selected students attempted the problem more than [_1] times.',$try-1).
1279: '</b></td></tr>';
1280: } else {
1281: $analysis_html.= '<tr><td colspan="4" align="center"><b>'.
1282: &mt('None of the selected students have attempted the problem').'</b></td></tr>';
1283: }
1284: last;
1285: }
1.88 matthew 1286: my $concept_graph='';
1287: if ($num_concepts > 1) {
1288: #
1289: # Create concept plot
1290: my @concept_plot_data;
1291: for (my $j=0;$j<=$#concept_data;$j++) {
1.93 matthew 1292: my $total = $concept_data[$j]->[$try]->{'_total'};
1.88 matthew 1293: if ($total == 0) {
1294: $concept_plot_data[$j] = 0;
1295: } else {
1296: $concept_plot_data[$j] = 100 *
1297: sprintf('%0.3f',
1.93 matthew 1298: $concept_data[$j]->[$try]->{'_correct'} /
1299: $total);
1.88 matthew 1300: }
1301: }
1302: #
1303: $concept_graph = &Apache::loncommon::DrawBarGraph
1.96 matthew 1304: ('Correct Concepts','Concept Number','Percent Correct',
1.105 matthew 1305: 100,$plotcolors,undef,\@concept_plot_data,{xskip=>1});
1.88 matthew 1306: }
1307: #
1308: # Create Foil Plots
1.96 matthew 1309: my $data_count = $response_data{'_total'}->[$try];
1310: my $correct = $response_data{'_correct'}->[$try];
1.117 ! matthew 1311: if (! defined($correct)) { $correct = 0; }
1.42 matthew 1312: my @Datasets;
1.48 matthew 1313: foreach my $option ('_correct',@{$ORdata->{'_Options'}}) {
1.88 matthew 1314: next if (! exists($foil_plot[$try]->{$option}));
1315: push(@Datasets,$foil_plot[$try]->{$option});
1.42 matthew 1316: }
1.76 matthew 1317: #
1318: # Put a blank in the data set between concepts
1319: for (my $set =0;$set<=$#Datasets;$set++) {
1320: my @Data = @{$Datasets[$set]};
1321: my $idx = 0;
1322: foreach my $concept (@{$Concepts}) {
1323: foreach my $foilid (@{$concept->{'foils'}}) {
1324: $Datasets[$set]->[$idx++]=shift(@Data);
1325: }
1326: if ($concept->{'name'} ne $Concepts->[-1]->{'name'}) {
1327: $Datasets[$set]->[$idx++] = 0;
1328: }
1329: }
1330: }
1331: #
1332: # Set up the labels needed for the bar graph
1333: my @Labels;
1334: my $idx = 1;
1335: foreach my $concept (@{$Concepts}) {
1336: foreach my $foilid (@{$concept->{'foils'}}) {
1337: push(@Labels,$idx++);
1338: }
1339: push(@Labels,'');
1340: }
1341: #
1.88 matthew 1342: my $correct_graph = &Apache::loncommon::DrawBarGraph
1.96 matthew 1343: ('Correct Statements','Statement','% Answered Correct',
1.105 matthew 1344: 100,$plotcolors,\@Labels,$Datasets[0],{xskip=>1});
1.75 matthew 1345:
1346: #
1347: #
1.57 matthew 1348: next if (! defined($Datasets[0]));
1.42 matthew 1349: for (my $i=0; $i< scalar(@{$Datasets[0]});$i++) {
1350: $Datasets[0]->[$i]=0;
1351: }
1.96 matthew 1352: my $count = $response_data{'_total'}->[$try] -
1.88 matthew 1353: $response_data{'_correct'}->[$try];
1354: my $incorrect_graph = &Apache::loncommon::DrawBarGraph
1.96 matthew 1355: ('Incorrect Statements','Statement','% Chosen Incorrectly',
1.105 matthew 1356: 100,$plotcolors,\@Labels,@Datasets,{xskip=>1});
1.88 matthew 1357: $analysis_html.=
1.96 matthew 1358: '<tr><td colspan="4" align="center">'.
1359: '<font size="+1">'.
1360: &mt('Attempt [_1], [_2] submissions, [_3] correct, [_4] incorrect',
1361: $try,$data_count,$correct,$data_count-$correct).
1362: '</font>'.'</td></tr>'.$/.
1.88 matthew 1363: '<tr>'.
1364: '<td>'.$concept_graph.'</td>'.
1365: '<td>'.$correct_graph.'</td>'.
1366: '<td>'.$incorrect_graph.'</td>'.
1367: '<td>'.$optionkey.'<td>'.
1368: '</tr>'.$/;
1.42 matthew 1369: }
1370: $analysis_html .= "</table>\n";
1.88 matthew 1371: $table .= $analysis_html;
1372: return $table;
1.25 matthew 1373: }
1374:
1.57 matthew 1375: sub OR_analyze_by_tries {
1.43 matthew 1376: my ($r,$PerformanceData,$mintries,$maxtries) = @_;
1.25 matthew 1377: my %Trydata;
1378: $mintries = 1 if (! defined($mintries) || $mintries < 1);
1379: $maxtries = $mintries if (! defined($maxtries) || $maxtries < $mintries);
1.96 matthew 1380: my @students;
1.26 matthew 1381: foreach my $row (@$PerformanceData) {
1382: next if (! defined($row));
1.47 matthew 1383: my $tries = &get_tries_from_row($row);
1.46 matthew 1384: my %Row = &Process_OR_Row($row);
1.43 matthew 1385: next if (! %Row);
1.96 matthew 1386: my $student_id = $row->[&Apache::loncoursedata::RD_student_id()];
1387: $students[$tries]->{$student_id}++;
1.42 matthew 1388: while (my ($foilid,$href) = each(%Row)) {
1389: if (! ref($href)) {
1390: $Trydata{$foilid}->[$tries] += $href;
1391: next;
1392: }
1393: while (my ($option,$value) = each(%$href)) {
1394: $Trydata{$foilid}->[$tries]->{$option}+=$value;
1.25 matthew 1395: }
1396: }
1397: }
1.96 matthew 1398: for (my $try=$mintries;$try<=$maxtries;$try++) {
1399: $Trydata{'_studentcount'}->[$try] = scalar(keys(%{$students[$try]}));
1400: }
1.25 matthew 1401: return %Trydata;
1402: }
1403:
1.33 matthew 1404: #########################################################
1.46 matthew 1405: #
1406: # Option Response: Time Analysis
1407: #
1.33 matthew 1408: #########################################################
1.57 matthew 1409: sub OR_time_analysis {
1.88 matthew 1410: my ($performance_data,$ORdata) = @_;
1.42 matthew 1411: my ($table,$Foils,$Concepts) = &build_foil_index($ORdata);
1.88 matthew 1412: my $foilkey = &build_option_index($ORdata);
1413: my $num_concepts = 1;
1414: if (defined($Concepts)) { $num_concepts = scalar(@$Concepts); }
1415: #
1416: if ($num_concepts < 2) {
1.42 matthew 1417: $table = '<h3>'.
1418: &mt('Not enough data for concept analysis. '.
1419: 'Performing Foil Analysis').
1.88 matthew 1420: '</h3>'.$table;
1.42 matthew 1421: }
1.88 matthew 1422: #
1.33 matthew 1423: my $num_plots = $ENV{'form.NumPlots'};
1.88 matthew 1424: my $num_data = scalar(@$performance_data)-1;
1.42 matthew 1425: #
1.96 matthew 1426: my $current_index;
1.37 matthew 1427: $table .= "<table>\n";
1.33 matthew 1428: for (my $i=0;$i<$num_plots;$i++) {
1.42 matthew 1429: ##
1.34 matthew 1430: my $starttime = &Apache::lonhtmlcommon::get_date_from_form
1431: ('startdate_'.$i);
1432: my $endtime = &Apache::lonhtmlcommon::get_date_from_form
1433: ('enddate_'.$i);
1434: if (! defined($starttime) || ! defined($endtime)) {
1.42 matthew 1435: my $sec_in_day = 86400;
1.88 matthew 1436: my $last_sub_time = &get_time_from_row($performance_data->[-1]);
1.96 matthew 1437: my ($sday,$smon,$syear) =
1438: (localtime($last_sub_time - $sec_in_day*$i))[3..5];
1.42 matthew 1439: $starttime = &Time::Local::timelocal(0,0,0,$sday,$smon,$syear);
1440: $endtime = $starttime + $sec_in_day;
1441: if ($i == ($num_plots -1 )) {
1.88 matthew 1442: $starttime = &get_time_from_row($performance_data->[0]);
1.42 matthew 1443: }
1444: }
1.96 matthew 1445: $table .= '<tr><td colspan="4" align="center"><font size="+1">'.
1.88 matthew 1446: &mt('Data from [_1] to [_2]',
1447: &Apache::lonlocal::locallocaltime($starttime),
1.96 matthew 1448: &Apache::lonlocal::locallocaltime($endtime)).
1449: '</font></td></tr>'.$/;
1.34 matthew 1450: my $startdateform = &Apache::lonhtmlcommon::date_setter
1451: ('Statistics','startdate_'.$i,$starttime);
1452: my $enddateform = &Apache::lonhtmlcommon::date_setter
1453: ('Statistics','enddate_'.$i,$endtime);
1.42 matthew 1454: #
1455: my $begin_index;
1456: my $end_index;
1457: my $j;
1.88 matthew 1458: while (++$j < scalar(@$performance_data)) {
1459: last if (&get_time_from_row($performance_data->[$j])
1.46 matthew 1460: > $starttime);
1.42 matthew 1461: }
1462: $begin_index = $j;
1.91 matthew 1463: while ($j < scalar(@$performance_data)) {
1464: if (&get_time_from_row($performance_data->[$j]) > $endtime) {
1465: last;
1466: } else {
1467: $j++;
1468: }
1.42 matthew 1469: }
1470: $end_index = $j;
1471: ##
1.96 matthew 1472: my ($processed_time_data,$correct,$data_count,$student_count) =
1473: &OR_time_process_data($performance_data,$begin_index,$end_index);
1474: ##
1475: $table .= '<tr><td colspan="4" align="center"><font size="+1">'.
1.102 matthew 1476: &mt('[_1] submissions from [_2] students, [_3] correct, [_4] incorrect',
1.96 matthew 1477: $data_count,$student_count,$correct,$data_count-$correct).
1478: '</font></td></tr>'.$/;
1.88 matthew 1479: my $concept_correct_plot = '';
1480: if ($num_concepts > 1) {
1481: $concept_correct_plot =
1.96 matthew 1482: &OR_Concept_Time_Analysis($processed_time_data,
1483: $correct,$data_count,$student_count,
1484: $ORdata,$Concepts);
1.42 matthew 1485: }
1.88 matthew 1486: my ($foil_correct_plot,$foil_incorrect_plot) =
1.96 matthew 1487: &OR_Foil_Time_Analysis($processed_time_data,
1488: $correct,$data_count,$student_count,
1489: $ORdata,$Foils,$Concepts);
1.88 matthew 1490: $table .= '<tr>'.
1491: '<td>'.$concept_correct_plot.'</td>'.
1492: '<td>'.$foil_correct_plot.'</td>'.
1493: '<td>'.$foil_incorrect_plot.'</td>'.
1494: '<td align="left" valign="top">'.$foilkey.'</td></tr>'.$/;
1495: $table .= '<tr><td colspan="4" align="center">'.
1.96 matthew 1496: &mt('Start time: [_1]',$startdateform).'<br />'.
1497: &mt('End time: [_1]',$enddateform).'</td></tr>'.$/;
1.88 matthew 1498: $table.= '<tr><td colspan="4"> </td></tr>'.$/;
1.33 matthew 1499: }
1.88 matthew 1500: $table .= '</table>';
1.42 matthew 1501: #
1.33 matthew 1502: return $table;
1503: }
1504:
1.57 matthew 1505: sub OR_Foil_Time_Analysis {
1.96 matthew 1506: my ($processed_time_data,$correct,$data_count,$student_count,
1507: $ORdata,$Foils,$Concepts) = @_;
1508: if ($data_count <= 0) {
1509: return ('<h2>'.&mt('There is no data to plot').'</h2>','');
1510: }
1.42 matthew 1511: my $analysis_html;
1.88 matthew 1512: my @plotdata;
1513: my @labels;
1514: foreach my $concept (@{$Concepts}) {
1515: foreach my $foil (@{$concept->{'foils'}}) {
1516: push(@labels,scalar(@labels)+1);
1.96 matthew 1517: my $total = $processed_time_data->{$foil}->{'_total'};
1.88 matthew 1518: if ($total == 0) {
1519: push(@{$plotdata[0]},0);
1.42 matthew 1520: } else {
1.88 matthew 1521: push(@{$plotdata[0]},
1.96 matthew 1522: 100 * $processed_time_data->{$foil}->{'_correct'} / $total);
1.37 matthew 1523: }
1.96 matthew 1524: my $total_incorrect = $total - $processed_time_data->{$foil}->{'_correct'};
1.88 matthew 1525: for (my $i=0;$i<scalar(@{$ORdata->{'_Options'}});$i++) {
1526: my $option = $ORdata->{'_Options'}->[$i];
1527: if ($total_incorrect == 0) {
1528: push(@{$plotdata[$i+1]},0);
1529: } else {
1530: push(@{$plotdata[$i+1]},
1.96 matthew 1531: 100 * $processed_time_data->{$foil}->{$option} / $total_incorrect);
1.88 matthew 1532: }
1533: }
1534: }
1535: # Put in a blank one
1536: push(@labels,'');
1537: push(@{$plotdata[0]},0);
1538: for (my $i=0;$i<scalar(@{$ORdata->{'_Options'}});$i++) {
1539: push(@{$plotdata[$i+1]},0);
1.39 matthew 1540: }
1.42 matthew 1541: }
1542: #
1543: # Create the plot
1.96 matthew 1544: my $correct_plot = &Apache::loncommon::DrawBarGraph('Correct Statements',
1545: 'Statement Number',
1546: 'Percent Correct',
1547: 100,
1548: $plotcolors,
1549: undef,
1.105 matthew 1550: $plotdata[0],
1551: {xskip=>1});
1.88 matthew 1552: for (my $j=0; $j< scalar(@{$plotdata[0]});$j++) {
1553: $plotdata[0]->[$j]=0;
1.42 matthew 1554: }
1.96 matthew 1555: my $incorrect_plot =
1556: &Apache::loncommon::DrawBarGraph('Incorrect Statements',
1557: 'Statement Number',
1558: 'Incorrect Option Choice',
1559: 100,
1560: $plotcolors,
1561: undef,
1.105 matthew 1562: @plotdata,{xskip=>1});
1.88 matthew 1563: return ($correct_plot,$incorrect_plot);
1.42 matthew 1564: }
1565:
1.57 matthew 1566: sub OR_Concept_Time_Analysis {
1.96 matthew 1567: my ($processed_time_data,$correct,$data_count,$student_count,
1568: $ORdata,$Concepts) = @_;
1569: return '' if ($data_count == 0);
1.33 matthew 1570: #
1.42 matthew 1571: # Put the data in plottable form
1.88 matthew 1572: my @plotdata;
1.42 matthew 1573: foreach my $concept (@$Concepts) {
1574: my ($total,$correct);
1575: foreach my $foil (@{$concept->{'foils'}}) {
1.96 matthew 1576: $total += $processed_time_data->{$foil}->{'_total'};
1577: $correct += $processed_time_data->{$foil}->{'_correct'};
1.42 matthew 1578: }
1579: if ($total == 0) {
1.88 matthew 1580: push(@plotdata,0);
1.42 matthew 1581: } else {
1.88 matthew 1582: push(@plotdata,100 * $correct / $total);
1.42 matthew 1583: }
1584: }
1585: #
1.33 matthew 1586: # Create the plot
1.96 matthew 1587: return &Apache::loncommon::DrawBarGraph('Correct Concepts',
1.88 matthew 1588: 'Concept Number',
1589: 'Percent Correct',
1590: 100,
1591: $plotcolors,
1592: undef,
1.105 matthew 1593: \@plotdata,{xskip=>1});
1.42 matthew 1594: }
1595:
1.96 matthew 1596: sub OR_time_process_data {
1597: my ($performance_data,$begin_index,$end_index)=@_;
1598: my %processed_time_data;
1599: my %distinct_students;
1600: my ($correct,$data_count);
1601: if (($begin_index == $end_index) &&
1602: ($end_index != scalar(@$performance_data)-1)) {
1603: return undef;
1604: }
1605: # Be sure we include the last one if we are asked for it.
1606: # That we have to correct here (and not when $end_index is
1607: # given a value) should probably be considered a bug.
1608: if ($end_index == scalar(@$performance_data)-1) {
1609: $end_index++;
1610: }
1611: my $count;
1612: for (my $i=$begin_index;$i<$end_index;$i++) {
1613: my $attempt = $performance_data->[$i];
1614: $count++;
1615: next if (! defined($attempt));
1616: my %attempt = &Process_OR_Row($attempt);
1617: $data_count++;
1618: $correct += $attempt{'_correct'};
1619: $distinct_students{$attempt->[&Apache::loncoursedata::RD_student_id()]}++;
1620: while (my ($foilid,$href) = each(%attempt)) {
1621: if (! ref($href)) {
1622: $processed_time_data{$foilid} += $href;
1623: next;
1624: }
1625: while (my ($option,$value) = each(%$href)) {
1626: $processed_time_data{$foilid}->{$option}+=$value;
1627: }
1628: }
1629: }
1630: return (\%processed_time_data,$correct,$data_count,
1631: scalar(keys(%distinct_students)));
1632: }
1633:
1.46 matthew 1634: sub build_foil_index {
1635: my ($ORdata) = @_;
1.48 matthew 1636: return if (! exists($ORdata->{'_Foils'}));
1637: my %Foildata = %{$ORdata->{'_Foils'}};
1.46 matthew 1638: my @Foils = sort(keys(%Foildata));
1639: my %Concepts;
1640: foreach my $foilid (@Foils) {
1.48 matthew 1641: push(@{$Concepts{$Foildata{$foilid}->{'_Concept'}}},
1.46 matthew 1642: $foilid);
1643: }
1644: undef(@Foils);
1645: # Having gathered the concept information in a hash, we now translate it
1646: # into an array because we need to be consistent about order.
1647: # Also put the foils in order, too.
1648: my $sortfunction = sub {
1649: my %Numbers = (one => 1,
1650: two => 2,
1651: three => 3,
1652: four => 4,
1653: five => 5,
1654: six => 6,
1655: seven => 7,
1656: eight => 8,
1657: nine => 9,
1658: ten => 10,);
1659: my $a1 = lc($a);
1660: my $b1 = lc($b);
1.57 matthew 1661: if (exists($Numbers{$a1})) {
1.67 matthew 1662: $a1 = $Numbers{$a1};
1.57 matthew 1663: }
1664: if (exists($Numbers{$b1})) {
1.67 matthew 1665: $b1 = $Numbers{$b1};
1.46 matthew 1666: }
1.67 matthew 1667: if (($a1 =~/^\d+$/) && ($b1 =~/^\d+$/)) {
1668: return $a1 <=> $b1;
1.57 matthew 1669: } else {
1.67 matthew 1670: return $a1 cmp $b1;
1.46 matthew 1671: }
1672: };
1673: my @Concepts;
1674: foreach my $concept (sort $sortfunction (keys(%Concepts))) {
1.57 matthew 1675: if (! defined($Concepts{$concept})) {
1676: $Concepts{$concept}=[];
1677: # next;
1678: }
1.46 matthew 1679: push(@Concepts,{ name => $concept,
1680: foils => [@{$Concepts{$concept}}]});
1681: push(@Foils,(@{$Concepts{$concept}}));
1682: }
1683: #
1684: # Build up the table of row labels.
1685: my $table = '<table border="1" >'."\n";
1686: if (@Concepts > 1) {
1687: $table .= '<tr>'.
1688: '<th>'.&mt('Concept Number').'</th>'.
1689: '<th>'.&mt('Concept').'</th>'.
1690: '<th>'.&mt('Foil Number').'</th>'.
1691: '<th>'.&mt('Foil Name').'</th>'.
1692: '<th>'.&mt('Foil Text').'</th>'.
1693: '<th>'.&mt('Correct Value').'</th>'.
1694: "</tr>\n";
1695: } else {
1696: $table .= '<tr>'.
1697: '<th>'.&mt('Foil Number').'</th>'.
1698: '<th>'.&mt('Foil Name').'</th>'.
1699: '<th>'.&mt('Foil Text').'</th>'.
1700: '<th>'.&mt('Correct Value').'</th>'.
1701: "</tr>\n";
1702: }
1703: my $conceptindex = 1;
1704: my $foilindex = 1;
1705: foreach my $concept (@Concepts) {
1706: my @FoilsInConcept = @{$concept->{'foils'}};
1707: my $firstfoil = shift(@FoilsInConcept);
1708: if (@Concepts > 1) {
1709: $table .= '<tr>'.
1710: '<td>'.$conceptindex.'</td>'.
1.83 albertel 1711: '<td>'.&HTML::Entities::encode($concept->{'name'},'<>&"').'</td>'.
1.46 matthew 1712: '<td>'.$foilindex++.'</td>'.
1.83 albertel 1713: '<td>'.&HTML::Entities::encode($Foildata{$firstfoil}->{'name'},'<>&"').'</td>'.
1.65 matthew 1714: '<td>'.$Foildata{$firstfoil}->{'text'}.'</td>'.
1.83 albertel 1715: '<td>'.&HTML::Entities::encode($Foildata{$firstfoil}->{'value'},'<>&"').'</td>'.
1.46 matthew 1716: "</tr>\n";
1717: } else {
1718: $table .= '<tr>'.
1719: '<td>'.$foilindex++.'</td>'.
1.83 albertel 1720: '<td>'.&HTML::Entities::encode($Foildata{$firstfoil}->{'name'},'<>&"').'</td>'.
1.65 matthew 1721: '<td>'.$Foildata{$firstfoil}->{'text'}.'</td>'.
1.83 albertel 1722: '<td>'.&HTML::Entities::encode($Foildata{$firstfoil}->{'value'},'<>&"').'</td>'.
1.46 matthew 1723: "</tr>\n";
1724: }
1725: foreach my $foilid (@FoilsInConcept) {
1726: if (@Concepts > 1) {
1727: $table .= '<tr>'.
1728: '<td></td>'.
1729: '<td></td>'.
1730: '<td>'.$foilindex.'</td>'.
1.83 albertel 1731: '<td>'.&HTML::Entities::encode($Foildata{$foilid}->{'name'},'<>&"').'</td>'.
1.65 matthew 1732: '<td>'.$Foildata{$foilid}->{'text'}.'</td>'.
1.84 albertel 1733: '<td>'.&HTML::Entities::encode($Foildata{$foilid}->{'value'},'<>&"').'</td>'.
1.46 matthew 1734: "</tr>\n";
1735: } else {
1736: $table .= '<tr>'.
1737: '<td>'.$foilindex.'</td>'.
1.83 albertel 1738: '<td>'.&HTML::Entities::encode($Foildata{$foilid}->{'name'},'<>&"').'</td>'.
1.65 matthew 1739: '<td>'.$Foildata{$foilid}->{'text'}.'</td>'.
1.83 albertel 1740: '<td>'.&HTML::Entities::encode($Foildata{$foilid}->{'value'},'<>&"').'</td>'.
1.46 matthew 1741: "</tr>\n";
1742: }
1743: } continue {
1744: $foilindex++;
1745: }
1746: } continue {
1747: $conceptindex++;
1748: }
1749: $table .= "</table>\n";
1750: #
1751: # Build option index with color stuff
1752: return ($table,\@Foils,\@Concepts);
1753: }
1754:
1755: sub build_option_index {
1756: my ($ORdata)= @_;
1757: my $table = "<table>\n";
1758: my $optionindex = 0;
1759: my @Rows;
1.48 matthew 1760: foreach my $option (&mt('correct option chosen'),@{$ORdata->{'_Options'}}) {
1.95 matthew 1761: my $color = $plotcolors->[$optionindex++];
1.46 matthew 1762: push (@Rows,
1763: '<tr>'.
1.95 matthew 1764: '<td bgcolor="'.$color.'">'.
1765: '<font color="'.$color.'">'.('*'x3).'</font>'.'</td>'.
1.83 albertel 1766: '<td>'.&HTML::Entities::encode($option,'<>&"').'</td>'.
1.46 matthew 1767: "</tr>\n");
1768: }
1769: shift(@Rows); # Throw away 'correct option chosen' color
1770: $table .= join('',reverse(@Rows));
1771: $table .= "</table>\n";
1772: }
1773:
1.94 matthew 1774: sub build_foil_key {
1775: my ($foils,$extra_data)= @_;
1776: if (! defined($extra_data)) { $extra_data = {}; }
1777: my $table = "<table>\n";
1778: my $foil_index = 0;
1779: my @rows;
1780: foreach my $foil (&mt('correct foil chosen'),@{$foils}) {
1.95 matthew 1781: my $color = $plotcolors->[$foil_index++];
1.94 matthew 1782: push (@rows,
1783: '<tr>'.
1.95 matthew 1784: '<td bgcolor="'.$color.'" class="key">'.
1785: '<font color="'.$color.'">'.('*'x4).'</font></td>'.
1.94 matthew 1786: '<td>'.&HTML::Entities::encode($foil,'<>&"').
1787: (' 'x2).$extra_data->{$foil}.'</td>'.
1788: "</tr>\n");
1789: }
1790: shift(@rows); # Throw away 'correct foil chosen' color
1791: $table .= join('',reverse(@rows));
1792: $table .= "</table>\n";
1793: }
1794:
1.33 matthew 1795: #########################################################
1796: #########################################################
1797: ##
1.46 matthew 1798: ## Generic Interface Routines
1.33 matthew 1799: ##
1800: #########################################################
1801: #########################################################
1.23 matthew 1802: sub CreateInterface {
1.28 matthew 1803: ##
1804: ## Environment variable initialization
1.36 matthew 1805: if (! exists$ENV{'form.AnalyzeOver'}) {
1.94 matthew 1806: $ENV{'form.AnalyzeOver'} = 'tries';
1.28 matthew 1807: }
1808: ##
1809: ## Build the menu
1.7 stredwic 1810: my $Str = '';
1.72 matthew 1811: $Str .= &Apache::lonhtmlcommon::breadcrumbs
1.74 matthew 1812: (undef,'Detailed Problem Analysis');
1.23 matthew 1813: $Str .= '<table cellspacing="5">'."\n";
1814: $Str .= '<tr>';
1815: $Str .= '<td align="center"><b>'.&mt('Sections').'</b></td>';
1816: $Str .= '<td align="center"><b>'.&mt('Enrollment Status').'</b></td>';
1.31 matthew 1817: $Str .= '<td align="center"> </td>';
1.23 matthew 1818: $Str .= '</tr>'."\n";
1.31 matthew 1819: ##
1820: ##
1.23 matthew 1821: $Str .= '<tr><td align="center">'."\n";
1822: $Str .= &Apache::lonstatistics::SectionSelect('Section','multiple',5);
1.28 matthew 1823: $Str .= '</td>';
1824: #
1825: $Str .= '<td align="center">';
1.23 matthew 1826: $Str .= &Apache::lonhtmlcommon::StatusOptions(undef,undef,5);
1.28 matthew 1827: $Str .= '</td>';
1828: #
1.36 matthew 1829: ##
1830: ##
1.28 matthew 1831: $Str .= '<td>';
1.91 matthew 1832: ##
1833: my $showprob_checkbox =
1834: '<input type="checkbox" name="show_prob" value="true" ';
1835: if ($ENV{'form.show_prob'} eq 'true') {
1836: $showprob_checkbox .= 'checked ';
1837: }
1838: $showprob_checkbox.= ' />';
1839: $Str.= '<nobr><label>'.
1840: &mt('Show problem [_1]',$showprob_checkbox).
1841: '</label></nobr><br />';
1842: ##
1.90 matthew 1843: my $analyze_selector = '<select name="AnalyzeOver" >';
1.94 matthew 1844: $analyze_selector .= '<option value="tries" ';
1.90 matthew 1845: if (! exists($ENV{'form.AnalyzeOver'}) ||
1.94 matthew 1846: $ENV{'form.AnalyzeOver'} eq 'tries'){
1847: # Default to tries
1.90 matthew 1848: $analyze_selector .= ' selected ';
1849: }
1850: $analyze_selector .= '>'.&mt('Tries').'</option>';
1.94 matthew 1851: $analyze_selector .= '<option value="time" ';
1852: $analyze_selector .= ' selected ' if ($ENV{'form.AnalyzeOver'} eq 'time');
1.90 matthew 1853: $analyze_selector .= '>'.&mt('Time').'</option>';
1854: $analyze_selector .= '</select>';
1.91 matthew 1855: $Str .= '<nobr><label>'.
1.90 matthew 1856: &mt('Analyze Over [_1] [_2]',
1857: $analyze_selector,
1858: &Apache::loncommon::help_open_topic('Analysis_Analyze_Over')).
1.91 matthew 1859: '</label></nobr><br />'.$/;
1.90 matthew 1860: ##
1861: my $numplots_selector = '<select name="NumPlots">';
1862: if (! exists($ENV{'form.NumPlots'})
1863: || $ENV{'form.NumPlots'} < 1
1864: || $ENV{'form.NumPlots'} > 20) {
1865: $ENV{'form.NumPlots'} = 5;
1866: }
1867: foreach my $i (1,2,3,4,5,6,7,8,10,15,20) {
1868: $numplots_selector .= '<option value="'.$i.'" ';
1869: if ($ENV{'form.NumPlots'} == $i) { $numplots_selector.=' selected '; }
1870: $numplots_selector .= '>'.$i.'</option>';
1871: }
1872: $numplots_selector .= '</select></nobr><br />';
1873: $Str .= '<nobr><label>'.&mt('Number of Plots [_1]',$numplots_selector).
1874: '</label></nobr>';
1875: ##
1876: $Str .= '<nobr><label>'.&mt('Status: [_1]',
1.85 matthew 1877: '<input type="text" '.
1878: 'name="stats_status" size="60" value="" />'
1879: ).
1.90 matthew 1880: '</label></nobr>';
1.28 matthew 1881: $Str .= '</td>';
1.36 matthew 1882: ##
1883: ##
1.28 matthew 1884: $Str .= '</tr>'."\n";
1.23 matthew 1885: $Str .= '</table>'."\n";
1.42 matthew 1886: return $Str;
1.54 matthew 1887: }
1.47 matthew 1888:
1889: #########################################################
1890: #########################################################
1891: ##
1892: ## Misc Option Response functions
1893: ##
1894: #########################################################
1895: #########################################################
1896: sub get_time_from_row {
1.42 matthew 1897: my ($row) = @_;
1898: if (ref($row)) {
1.47 matthew 1899: return $row->[&Apache::loncoursedata::RD_timestamp()];
1.42 matthew 1900: }
1901: return undef;
1902: }
1903:
1.47 matthew 1904: sub get_tries_from_row {
1.42 matthew 1905: my ($row) = @_;
1906: if (ref($row)) {
1.47 matthew 1907: return $row->[&Apache::loncoursedata::RD_tries()];
1.42 matthew 1908: }
1909: return undef;
1910: }
1911:
1.48 matthew 1912: sub hashify_attempt {
1913: my ($row) = @_;
1914: my %attempt;
1.94 matthew 1915: $attempt{'student'} = $row->[&Apache::loncoursedata::RD_sname()];
1.48 matthew 1916: $attempt{'tries'} = $row->[&Apache::loncoursedata::RD_tries()];
1.94 matthew 1917: $attempt{'submission'} = &Apache::lonnet::unescape($row->[&Apache::loncoursedata::RD_submission()]);
1.48 matthew 1918: $attempt{'award'} = $row->[&Apache::loncoursedata::RD_awarddetail()];
1919: $attempt{'timestamp'} = $row->[&Apache::loncoursedata::RD_timestamp()];
1920: return %attempt;
1921: }
1922:
1.46 matthew 1923: sub Process_OR_Row {
1.42 matthew 1924: my ($row) = @_;
1925: my %RowData;
1.96 matthew 1926: # my $student_id = $row->[&Apache::loncoursedata::RD_student_id()];
1.47 matthew 1927: my $award = $row->[&Apache::loncoursedata::RD_awarddetail()];
1928: my $grading = $row->[&Apache::loncoursedata::RD_response_eval()];
1929: my $submission = $row->[&Apache::loncoursedata::RD_submission()];
1930: my $time = $row->[&Apache::loncoursedata::RD_timestamp()];
1.96 matthew 1931: # my $tries = $row->[&Apache::loncoursedata::RD_tries()];
1.43 matthew 1932: return undef if ($award eq 'MISSING_ANSWER');
1.97 matthew 1933: if (&submission_is_correct($award)) {
1.42 matthew 1934: $RowData{'_correct'} = 1;
1935: }
1936: $RowData{'_total'} = 1;
1937: my @Foilgrades = split('&',$grading);
1938: my @Foilsubs = split('&',$submission);
1939: for (my $j=0;$j<=$#Foilgrades;$j++) {
1940: my ($foilid,$correct) = split('=',$Foilgrades[$j]);
1.58 matthew 1941: $foilid = &Apache::lonnet::unescape($foilid);
1.42 matthew 1942: my (undef,$submission) = split('=',$Foilsubs[$j]);
1943: if ($correct) {
1944: $RowData{$foilid}->{'_correct'}++;
1945: } else {
1946: $submission = &Apache::lonnet::unescape($submission);
1947: $RowData{$foilid}->{$submission}++;
1948: }
1949: $RowData{$foilid}->{'_total'}++;
1950: }
1951: return %RowData;
1.47 matthew 1952: }
1953:
1.97 matthew 1954: sub submission_is_correct {
1955: my ($award) = @_;
1956: if ($award =~ /(APPROX_ANS|EXACT_ANS)/) {
1957: return 1;
1958: } else {
1959: return 0;
1960: }
1961: }
1962:
1.23 matthew 1963: 1;
1.1 stredwic 1964:
1965: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>