'.
''.
@@ -1092,7 +1428,7 @@ sub OR_time_analysis {
&OR_time_process_data($performance_data,$begin_index,$end_index);
##
$table .= ''.
- &mt('[_1] submissions from [_2] students submitting, [_3] correct, [_4] incorrect',
+ &mt('[_1] submissions from [_2] students, [_3] correct, [_4] incorrect',
$data_count,$student_count,$correct,$data_count-$correct).
' | '.$/;
my $concept_correct_plot = '';
@@ -1166,7 +1502,8 @@ sub OR_Foil_Time_Analysis {
100,
$plotcolors,
undef,
- $plotdata[0]);
+ $plotdata[0],
+ {xskip=>1});
for (my $j=0; $j< scalar(@{$plotdata[0]});$j++) {
$plotdata[0]->[$j]=0;
}
@@ -1177,7 +1514,7 @@ sub OR_Foil_Time_Analysis {
100,
$plotcolors,
undef,
- @plotdata);
+ @plotdata,{xskip=>1});
return ($correct_plot,$incorrect_plot);
}
@@ -1208,7 +1545,7 @@ sub OR_Concept_Time_Analysis {
100,
$plotcolors,
undef,
- \@plotdata);
+ \@plotdata,{xskip=>1});
}
sub OR_time_process_data {
@@ -1226,7 +1563,6 @@ sub OR_time_process_data {
if ($end_index == scalar(@$performance_data)-1) {
$end_index++;
}
- &Apache::lonnet::logthis(' '.$begin_index.':'.$end_index);
my $count;
for (my $i=$begin_index;$i<$end_index;$i++) {
my $attempt = $performance_data->[$i];
@@ -1246,7 +1582,6 @@ sub OR_time_process_data {
}
}
}
- &Apache::lonnet::logthis('count = '.$count);
return (\%processed_time_data,$correct,$data_count,
scalar(keys(%distinct_students)));
}
|