');
}
#
- &Apache::loncoursedata::clear_internal_caches();
- if (exists($ENV{'form.ClearCache'}) ||
- exists($ENV{'form.updatecaches'}) ||
- (exists($ENV{'form.firstanalysis'}) &&
- $ENV{'form.firstanalysis'} ne 'no')) {
- &Apache::lonstatistics::Gather_Full_Student_Data($r);
- }
- if (! exists($ENV{'form.firstanalysis'})) {
- $r->print('');
- } else {
- $r->print('');
- }
+ my @CacheButtonHTML =
+ &Apache::lonstathelpers::manage_caches($r,'Statistics','stats_status');
$r->rflush();
#
if (! exists($ENV{'form.problemchoice'}) ||
@@ -98,32 +85,55 @@ sub BuildSubmissionTimePage {
&mt('Graph Problem Submission Times').'" />');
$r->print(' 'x5);
$r->print('
'.&mt('Please select a problem to analyze').'
');
- $r->print(&ProblemSelector());
+ $r->print(&Apache::lonstathelpers::problem_selector('.'));
} else {
foreach my $button (@SubmitButtons) {
$r->print('{'text'}).'" />');
$r->print(' 'x5);
}
+ foreach my $html (@CacheButtonHTML) {
+ $r->print($html.(' 'x5));
+ }
+ $r->rflush();
+ #
+ # Determine which problem we are to analyze
+ my $current_problem = &Apache::lonstathelpers::get_target_from_id
+ ($ENV{'form.problemchoice'});
+ #
+ my ($navmap,$prev,$curr,$next) =
+ &Apache::lonstathelpers::get_prev_curr_next($current_problem,
+ '.',
+ 'part');
+ if (exists($ENV{'form.PrevProblemAnalysis'}) && defined($prev)) {
+ $current_problem = $prev;
+ } elsif (exists($ENV{'form.NextProblemAnalysis'}) && defined($next)) {
+ $current_problem = $next;
+ } else {
+ $current_problem = $curr;
+ }
+ #
+ # Store the current problem choice and send it out in the form
+ $ENV{'form.problemchoice'} =
+ &Apache::lonstathelpers::make_target_id($current_problem);
$r->print('');
#
$r->print('');
- #
- my ($symb,$part) = &get_problem_symb(
- &Apache::lonnet::unescape($ENV{'form.problemchoice'}));
$r->rflush();
#
- my $resource = &get_resource_from_symb($symb);
+ my $resource = $current_problem->{'resource'};
if (! defined($resource)) {
$r->print('resource is undefined');
} else {
- $r->print('
'.$resource->{'title'}.'
');
- $r->print('
'.$resource->{'src'}.'
');
+ $r->print('
'.$resource->compTitle.'
');
+ $r->print('
'.$resource->src.'
');
$r->rflush();
- $r->print(&render_resource($resource));
+ $r->print(&Apache::lonstathelpers::render_resource($resource));
+ $r->print(' ');
$r->rflush();
- $r->print(&analyze_times($r,$resource,\@Students,$part));
+ $r->print(&analyze_times($r,$resource->symb,\@Students,
+ $current_problem->{'part'}));
}
$r->print('');
}
@@ -148,60 +158,64 @@ sub get_week_start {
}
sub analyze_times {
- my ($r,$resource,$students,$part) = @_;
+ my ($r,$symb,$students,$part) = @_;
+ my $htmltable;
+ #
+ # Convenience arrays
+ my @FullWeekDay = (qw/Sunday Monday Tuesday Wednesday Thursday Friday
+ Saturday/);
+ my @WeekDay = (qw/SUN MON TUE WED THU FRI SAT SUN/);
+ my @Month = (qw/Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec/);
+ #
my $html; # holds results of analysis
# Get the data
my $SubData = &Apache::loncoursedata::get_response_time_data
- ($students,$resource->{'symb'},$part);
+ (\@Apache::lonstatistics::SelectedSections,
+ $Apache::lonstatistics::enrollment_status,
+ $symb,$part);
if (! defined($SubData) || ! ref($SubData)) {
- $html.= '
There is no submission data for this resource
';
+ $html.= '
There is no submission data for this problem at all
';
return $html;
}
my $NumSub = scalar(@{$SubData});
if (! @{$SubData}) {
- $html.= '
There is no submission data for this resource
';
+ $html.= '
There is no submission data for this problem
';
return $html;
}
# Process the data
- # Get first and last times
- my $span = &get_time_from_row($SubData->[-1]) -
- &get_time_from_row($SubData->[0]);
- if ($span == 0) {
- $html.= '
There is no submission data for this resource
';
- return $html;
- }
#
my (undef,undef,undef,$mday,$month,$year,$wday,$yday,$isdst) =
localtime(&get_time_from_row($SubData->[0]));
my $day_start = &Time::Local::timelocal(0,0,0,$mday,$month,$year);
- my $start_day_of_week = $wday;
- #
- my @WeekDay = (qw/SUN MON TUE WED THU FRI SAT SUN/);
- my @Month = (qw/Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec/);
- #
- my $cumulative_answers = 0;
- #
- my @Ydata;
- my @AnsData;
- my @Xlabel;
#
+ # Configure the bins used to store the data.
my $binsize = 3600; # seconds
my $bins_per_day = 86400/$binsize;
my $bincount = 0;
my $endtime = $day_start;
#
- my $max;
+ # Initialize loop variables
+ my $max; # The sum of @Ydata
+ my @Ydata=(0); # number of submissions
+ my @AnsData=(0); # number of correct submissions
+ my @Xlabel=($WeekDay[$wday]); # Labels of itmes
+ my @BinEnd; # The end time of each bin
+ my $cumulative_answers = 0; # The sum of @AnsData
+ my %students; # which students have attempted the problem?
+ #
foreach my $row (@$SubData) {
my $subtime = &get_time_from_row($row);
while ($subtime > $endtime && $endtime < time) {
# Create a new bin
$bincount++;
- $Ydata[$bincount]=0;
- $AnsData[$bincount]=$AnsData[$bincount-1];
+ $Ydata[$bincount] = 0;
+ $AnsData[$bincount] = 0;
$endtime += $binsize;
+ push(@BinEnd,$endtime);
if ($bincount % (86400/$binsize) == 0) {
- $Xlabel[$bincount] = $WeekDay[$wday++];
+ $wday++;
$wday %= 7;
+ $Xlabel[$bincount] = $WeekDay[$wday];
} else {
$Xlabel[$bincount] = '';
}
@@ -210,7 +224,27 @@ sub analyze_times {
$max = $Ydata[$bincount] if ($max < $Ydata[$bincount]);
$AnsData[$bincount] += &successful_submission($row);
$cumulative_answers += &successful_submission($row);
+ $students{$row->[&Apache::loncoursedata::RT_student_id()]}++;
+ }
+ #
+ # Pad the data to a full day
+ while ($bincount % $bins_per_day != 0) {
+ $bincount++;
+ $Ydata[$bincount]=0;
+ $AnsData[$bincount]=0;
+ $endtime += $binsize;
+ push(@BinEnd,$endtime);
+ if ($bincount % (86400/$binsize) == 0) {
+ $wday ++;
+ $wday %= 7;
+ $Xlabel[$bincount] = $WeekDay[$wday];
+ } else {
+ $Xlabel[$bincount] = '';
+ }
}
+ my $numstudents = scalar(keys(%students));
+ #
+ # Determine a nice maximum value to use
foreach my $maximum (10,15,20,25,30,40,50,60,70,80,90,100,
120,150,200,250,300,350,400,450,500,
600,700,800,900,1000,1100,1200,1500,2000,
@@ -220,55 +254,109 @@ sub analyze_times {
last;
}
}
- while ($bincount % $bins_per_day != 0) {
- $bincount++;
- $Ydata[$bincount]=0;
- $AnsData[$bincount]=$AnsData[$bincount-1];
- $endtime += $binsize;
- if ($bincount % (86400/$binsize) == 0) {
- $Xlabel[$bincount] = $WeekDay[$wday];
- } else {
- $Xlabel[$bincount] = '';
+ #
+ # Build the data table
+ $htmltable = '
'.
+ '
'.
+ ''.
+ '
'.
+ '
'.&mt('Begin').'
'.
+ '
'.(' 'x3).'
'.
+ '
'.&mt('End').'
'.
+ '
'.&mt('Submissions (plotted)').'
'.
+ '
'.(' 'x3).'
'.
+ '
'.&mt('Correct Submissions (not plotted)').'
'.
+ '
'.(' 'x3).'
'.
+ '
'.&mt('Cumulative Correct of those attempting the problem (not plotted)').'
'.
+ '
'.(' 'x3).'
'.
+ '
'.&mt('Cumulative Percent Correct of those attempting the problem (not plotted)').'
'.
+ '
'.(' 'x3).'
'.
+ '
'.&mt('Cumulative Percent Correct of selected students (plotted)').'
'.
+ '
'.
+ ''.
+ '';
+ my @CumulativeCorrect=(0);
+ my @corr_as_percent_of_selected;
+ my @corr_as_percent_of_answering;
+ for (my $i=0;$i<=$#Ydata;$i++) {
+ $CumulativeCorrect[$i]=$CumulativeCorrect[-1]+$AnsData[$i];
+ $corr_as_percent_of_answering[$i] =
+ sprintf('%3.1f',100*$CumulativeCorrect[$i]/$numstudents);
+ $corr_as_percent_of_selected[$i] =
+ sprintf('%3.1f',100*$CumulativeCorrect[$i]/scalar(@$students));
+ if ($Ydata[$i] != 0) {
+ next if (! defined($BinEnd[$i]) || $BinEnd[$i] == 0);
+ $htmltable .=
+ '