Diff for /loncom/interface/statistics/lonproblemstatistics.pm between versions 1.45 and 1.85

version 1.45, 2003/03/26 21:47:47 version 1.85, 2004/05/14 20:30:17
Line 26 Line 26
 #  #
 # (Navigate problems for statistical reports  # (Navigate problems for statistical reports
 #  #
 ###  ###############################################
   ###############################################
   
   =pod
   
   =head1 NAME
   
   lonproblemstatistics
   
   =head1 SYNOPSIS
   
   Routines to present problem statistics to instructors via tables,
   Excel files, and plots.
   
   =over 4
   
   =cut
   
   ###############################################
   ###############################################
   
 package Apache::lonproblemstatistics;  package Apache::lonproblemstatistics;
   
 use strict;  use strict;
 use Apache::lonnet();  use Apache::lonnet();
   use Apache::loncommon();
 use Apache::lonhtmlcommon;  use Apache::lonhtmlcommon;
 use Apache::loncoursedata;  use Apache::loncoursedata;
 use Apache::lonstatistics;  use Apache::lonstatistics;
   use LONCAPA::lonmetadata();
   use Apache::lonlocal;
 use Spreadsheet::WriteExcel;  use Spreadsheet::WriteExcel;
   use Apache::lonstathelpers();
   use Time::HiRes;
   
   my @StatsArray;
   my %SeqStat;    # keys are symbs, values are hash refs
   
   ##
   ## Localization notes:
   ##
   ## in @Fields[0]->{'long_title'} is placed in Excel files and is used as the
   ## header for plots created with Graph.pm, both of which more than likely do
   ## not support localization.
   ##
   #
   #
   ##
   ## Description of Field attributes
   ##
   ## Attribute     Required   Value       Meaning or Use
   ##
   ## name            yes      any scalar  Used to uniquely identify field
   ## title           yes      any scalar  This is what the user sees to identify
   ##                                      the field.  Passed through &mt().
   ## long_title      yes      any scalar  Used as graph heading and in excel
   ##                                      output.  NOT translated
   ## align           no    (left|right|center)  HTML cell contents alignment
   ## color           yes      html color  HTML cell background color
   ##                                      used to visually group statistics
   ## special         no          (link)   Indicates a link, target is name.link
   ##                                      Currently set in &get_statistics()
   ## graphable       no      (yes|no)     Can a bar graph of the field be 
   ##                                      produced?
   ## sortable        no      (yes|no)     Should a sort link be put in the
   ##                                      column header?
   ## selectable      yes     (yes|no)     Can the column be removed from the
   ##                                      statistics display?
   ## selected        yes     (yes|no)     Is the column selected by default?
   ##
   ## format          no      sprintf format string
   ##
   ## excel_format    no      excel format type 
   ##                               (see &Apache::loncommon::define_excel_formats
   my @Fields = (
              { name => 'problem_num',
                title => 'P#',
                align => 'right',
                color => '#FFFFE6',
                selectable => 'no',
                defaultselected => 'yes',
              },
              { name   => 'container',
                title  => 'Sequence or Folder',
                align  => 'left',
                color  => '#FFFFE6',
                sortable => 'yes',
                selectable => 'no',
                defaultselected => 'yes',
              },
              { name   => 'title',
                title  => 'Title',
                align  => 'left',
                color  => '#FFFFE6',
                special  => 'link',
                sortable => 'yes', 
                selectable => 'no',
                defaultselected => 'yes',
              },
              { name   => 'part', 
                title  => 'Part',
                align  => 'left',
                color  => '#FFFFE6',
                selectable => 'no',
                defaultselected => 'yes',
              },
              { name   => 'num_students',
                title  => '#Stdnts',
                align  => 'right',
                color  => '#EEFFCC',
                format => '%d',
                sortable  => 'yes',
                graphable => 'yes',
                long_title => 'Number of Students Attempting Problem',
                selectable => 'yes',
                defaultselected => 'yes',
              },
              { name   => 'tries',
                title  => 'Tries',
                align  => 'right',
                color  => '#EEFFCC',
                format => '%d',
                sortable  => 'yes',
                graphable => 'yes',
                long_title => 'Total Number of Tries',
                selectable => 'yes',
                defaultselected => 'yes',
              },
              { name   => 'max_tries',
                title  => 'Max Tries',
                align  => 'right',
                color  => '#DDFFFF',
                format => '%d',
                sortable  => 'yes',
                graphable => 'yes',
                long_title => 'Maximum Number of Tries',
                selectable => 'yes',
                defaultselected => 'yes',
              },
              { name   => 'min_tries',
                title  => 'Min Tries',
                align  => 'right',
                color  => '#DDFFFF',
                format => '%d',
                sortable  => 'yes',
                graphable => 'yes',
                long_title => 'Minumum Number of Tries',
                selectable => 'yes',
                defaultselected => 'yes',
              },
              { name   => 'mean_tries',
                title  => 'Mean Tries',
                align  => 'right',
                color  => '#DDFFFF',
                format => '%5.2f',
                sortable  => 'yes',
                graphable => 'yes',
                long_title => 'Average Number of Tries',
                selectable => 'yes',
                defaultselected => 'yes',
              },
              { name   => 'std_tries',
                title  => 'S.D. tries',
                align  => 'right',
                color  => '#DDFFFF',
                format => '%5.2f',
                sortable  => 'yes',
                graphable => 'yes',
                long_title => 'Standard Deviation of Number of Tries',
                selectable => 'yes',
                defaultselected => 'yes',
              },
              { name   => 'skew_tries',
                title  => 'Skew Tries',
                align  => 'right',
                color  => '#DDFFFF',
                format => '%5.2f',
                sortable  => 'yes',
                graphable => 'yes',
                long_title => 'Skew of Number of Tries',
                selectable => 'yes',
                defaultselected => 'no',
              },
              { name   => 'num_solved',
                title  => '#YES',
                align  => 'right',
                color  => '#FFDDDD',
                format => '%4.1f',#             format => '%d',
                sortable  => 'yes',
                graphable => 'yes',
                long_title => 'Number of Students able to Solve',
                selectable => 'yes',
                defaultselected => 'yes',
              },
              { name   => 'num_override',
                title  => '#yes',
                align  => 'right',
                color  => '#FFDDDD',
                format => '%4.1f',#             format => '%d',
                sortable  => 'yes',
                graphable => 'yes',
                long_title => 'Number of Students given Override',
                selectable => 'yes',
                defaultselected => 'yes',
              },
              { name   => 'num_wrong',
                title  => '#Wrng',
                align  => 'right',
                color  => '#FFDDDD',
                format => '%4.1f',
                sortable  => 'yes',
                graphable => 'yes',
                long_title => 'Percent of students whose final answer is wrong',
                selectable => 'yes',
                defaultselected => 'yes',
              },
              { name   => 'deg_of_diff',
                title  => 'DoDiff',
                align  => 'right',
                color  => '#FFFFE6',
                format => '%5.2f',
                sortable  => 'yes',
                graphable => 'yes',
                long_title => 'Degree of Difficulty'.
                              '[ 1 - ((#YES+#yes) / Tries) ]',
                selectable => 'yes',
                defaultselected => 'yes',
              },
              { name   => 'deg_of_disc',
                title  => 'DoDisc',
                align  => 'right',
                color  => '#FFFFE6',
                format => '%4.2f',
                sortable  => 'yes',
                graphable => 'yes',
                long_title => 'Degree of Discrimination',
                selectable => 'yes',
                defaultselected => 'no',
              },
   ##   duedate included for research purposes.  Commented out most of the time.
   #           { name => 'duedate',
   #             title => 'Due Date',
   #             align => 'left',
   #             color => '#FFFFFF',
   #             sortable => 'yes',
   #             graphable => 'no',
   #             long_title => 'Due date of resource for instructor',
   #             selectable => 'no',
   #             defaultselected => 'yes',
   #            },
   ##   opendate included for research purposes.  Commented out most of the time.
   #           { name => 'opendate',
   #             title => 'Open Date',
   #             align => 'left',
   #             color => '#FFFFFF',
   #             sortable => 'yes',
   #             graphable => 'no',
   #             long_title => 'date resource became answerable',
   #             selectable => 'no',
   #             defaultselected => 'yes',
   #            },
   ##   symb included for research purposes.  Commented out most of the time.
   #           { name => 'symb',
   #             title => 'Symb',
   #             align => 'left',
   #             color => '#FFFFFF',
   #             sortable => 'yes',
   #             graphable => 'no',
   #             long_title => 'Unique LON-CAPA identifier for problem',
   #             selectable => 'no',
   #             defaultselected => 'yes',
   #            },
   );
   
   my @SeqFields = (
              { name   => 'title',
                title  => 'Sequence',
                align  => 'left',
                color  => '#FFFFE6',
                special  => 'no',
                sortable => 'no', 
                selectable => 'yes',
                defaultselected => 'no',
              },
              { name   => 'items',
                title  => '#Items',
                align  => 'right',
                color  => '#FFFFE6',
                format => '%4d',
                sortable  => 'no',
                graphable => 'no',
                long_title => 'Number of Items in Sequence',
                selectable => 'yes',
                defaultselected => 'no',
              },
              { name   => 'scoremean',
                title  => 'Score Mean',
                align  => 'right',
                color  => '#FFFFE6',
                format => '%4.2f',
                sortable  => 'no',
                graphable => 'no',
                long_title => 'Mean Sequence Score',
                selectable => 'yes',
                defaultselected => 'no',
              },
              { name   => 'scorestd',
                title  => 'Score STD',
                align  => 'right',
                color  => '#FFFFE6',
                format => '%4.2f',
                sortable  => 'no',
                graphable => 'no',
                long_title => 'Standard Deviation of Sequence Scores',
                selectable => 'yes',
                defaultselected => 'no',
              },
              { name   => 'scoremax',
                title  => 'Score Max',
                align  => 'right',
                color  => '#FFFFE6',
                format => '%4.2f',
                sortable  => 'no',
                graphable => 'no',
                long_title => 'Maximum Sequence Score',
                selectable => 'yes',
                defaultselected => 'no',
              },
              { name   => 'scoremin',
                title  => 'Score Min',
                align  => 'right',
                color  => '#FFFFE6',
                format => '%4.2f',
                sortable  => 'no',
                graphable => 'no',
                long_title => 'Minumum Sequence Score',
                selectable => 'yes',
                defaultselected => 'no',
              },
              { name   => 'scorecount',
                title  => 'Score N',
                align  => 'right',
                color  => '#FFFFE6',
                format => '%4d',
                sortable  => 'no',
                graphable => 'no',
                long_title => 'Number of Students in score computations',
                selectable => 'yes',
                defaultselected => 'no',
              },
              { name   => 'countmean',
                title  => 'Count Mean',
                align  => 'right',
                color  => '#FFFFFF',
                format => '%4.2f',
                sortable  => 'no',
                graphable => 'no',
                long_title => 'Mean Sequence Score',
                selectable => 'yes',
                defaultselected => 'no',
              },
              { name   => 'countstd',
                title  => 'Count STD',
                align  => 'right',
                color  => '#FFFFFF',
                format => '%4.2f',
                sortable  => 'no',
                graphable => 'no',
                long_title => 'Standard Deviation of Sequence Scores',
                selectable => 'yes',
                defaultselected => 'no',
              },
              { name   => 'countmax',
                title  => 'Count Max',
                align  => 'right',
                color  => '#FFFFFF',
                format => '%4.2f',
                sortable  => 'no',
                graphable => 'no',
                long_title => 'Maximum Number of Correct Problems',
                selectable => 'yes',
                defaultselected => 'no',
              },
              { name   => 'countmin',
                title  => 'Count Min',
                align  => 'right',
                color  => '#FFFFFF',
                format => '%4.2f',
                sortable  => 'no',
                graphable => 'no',
                long_title => 'Minumum Number of Correct Problems',
                selectable => 'yes',
                defaultselected => 'no',
              },
              { name   => 'count',
                title  => 'Count N',
                align  => 'right',
                color  => '#FFFFFF',
                format => '%4d',
                sortable  => 'no',
                graphable => 'no',
                long_title => 'Number of Students in score computations',
                selectable => 'yes',
                defaultselected => 'no',
              },
              { name   => 'KR-21',
                title  => 'KR-21',
                align  => 'right',
                color  => '#FFAAAA',
                format => '%4.2f',
                sortable  => 'no',
                graphable => 'no',
                long_title => 'KR-21 reliability statistic',
                selectable => 'yes',
                defaultselected => 'no',
              },           
   );
   
   my %SelectedFields;
   
   sub parse_field_selection {
       #
       # Pull out the defaults
       if (! defined($ENV{'form.fieldselections'})) {
           $ENV{'form.fieldselections'} = [];
           foreach my $field (@Fields) {
               next if ($field->{'selectable'} ne 'yes');
               if ($field->{'defaultselected'} eq 'yes') {
                   push(@{$ENV{'form.fieldselections'}},$field->{'name'});
               }
           }
       }
       #
       # Make sure the data we are plotting is there
       my %NeededFields;
       if (exists($ENV{'form.plot'}) && $ENV{'form.plot'} ne '' &&
           $ENV{'form.plot'} ne 'none') {
           if ($ENV{'form.plot'} eq 'degrees') {
               $NeededFields{'deg_of_diff'}++;
               $NeededFields{'deg_of_disc'}++;
           } elsif ($ENV{'form.plot'} eq 'tries statistics') {
               $NeededFields{'mean_tries'}++;
               $NeededFields{'std_tries'}++;
               $NeededFields{'problem_num'}++;
           } else {
               $NeededFields{$ENV{'form.plot'}}++;
           }
       }
       #
       # This should not happen, but in case it does...
       if (ref($ENV{'form.fieldselections'}) ne 'ARRAY') {
           $ENV{'form.fieldselections'} = [$ENV{'form.fieldselections'}];
       }
       #
       # Set the field data and the selected fields (for easier checking)
       undef(%SelectedFields);
       foreach my $field (@Fields) {
           if ($field->{'selectable'} ne 'yes') {
               $field->{'selected'} = 'yes';
           } else {
               $field->{'selected'} = 'no';
           }
           if (exists($NeededFields{$field->{'name'}})) {
               $field->{'selected'} = 'yes';
               $SelectedFields{$field->{'name'}}++;
           }
           foreach my $selection (@{$ENV{'form.fieldselections'}}) {
               if ($selection eq $field->{'name'} || $selection eq 'all') {
                   $field->{'selected'} = 'yes';
                   $SelectedFields{$field->{'name'}}++;
               }
           }
       }
       #
       # Always show all the sequence statistics (for now)
       foreach my $field (@SeqFields) {
           $field->{'selected'} = 'yes';
       }
       return;
   }
   
   sub field_selection_input {
       my $Str = '<select name="fieldselections" multiple size="5">'."\n";
       $Str .= '<option value="all">all</option>'."\n";
       foreach my $field (@Fields) {
           next if ($field->{'selectable'} ne 'yes');
           $Str .= '    <option value="'.$field->{'name'}.'" ';
           if ($field->{'selected'} eq 'yes') {
               $Str .= 'selected ';
           }
           $Str .= '>'.$field->{'title'}.'</option>'."\n";
       }
       $Str .= "</select>\n";
   }
   
   ###############################################
   ###############################################
   
   =pod 
   
 #######################################################  =item &CreateInterface()
 #######################################################  
   Create the main intereface for the statistics page.  Allows the user to
   select sections, maps, and output.
   
   =cut
   
   ###############################################
   ###############################################
 sub CreateInterface {  sub CreateInterface {
       #
       &parse_field_selection();
       #
     my $Str = '';      my $Str = '';
       $Str .= &Apache::lonhtmlcommon::breadcrumbs
           (undef,'Overall Problem Statistics','Statistics_Overall_Key');
     $Str .= '<table cellspacing="5">'."\n";      $Str .= '<table cellspacing="5">'."\n";
     $Str .= '<tr>';      $Str .= '<tr>';
     $Str .= '<td align="center"><b>Sections</b></td>';      $Str .= '<td align="center"><b>'.&mt('Sections').'</b></td>';
     $Str .= '<td align="center"><b>Sequences and Folders</b></td>';      $Str .= '<td align="center"><b>'.&mt('Enrollment Status').'</b></td>';
     $Str .= '<td align="center"><b>Output</b></td>';      $Str .= '<td align="center"><b>'.&mt('Sequences and Folders').'</b></td>';
       $Str .= '<td align="center"><b>'.&mt('Statistics').'</b></td>';
       $Str .= '<td rowspan="2">'.
           &Apache::lonstathelpers::limit_by_time_form().'</td>';
     $Str .= '</tr>'."\n";      $Str .= '</tr>'."\n";
     #      #
     $Str .= '<tr><td align="center">'."\n";      $Str .= '<tr><td align="center">'."\n";
     $Str .= &Apache::lonstatistics::SectionSelect('Section','multiple',5);      $Str .= &Apache::lonstatistics::SectionSelect('Section','multiple',5);
     $Str .= '</td><td align="center">';      $Str .= '</td><td align="center">';
       $Str .= &Apache::lonhtmlcommon::StatusOptions(undef,undef,5);
       $Str .= '</td><td align="center">';
     #      #
     my $only_seq_with_assessments = sub {       my $only_seq_with_assessments = sub { 
         my $s=shift;          my $s=shift;
Line 63  sub CreateInterface { Line 568  sub CreateInterface {
     };      };
     $Str .= &Apache::lonstatistics::MapSelect('Maps','multiple,all',5,      $Str .= &Apache::lonstatistics::MapSelect('Maps','multiple,all',5,
                                               $only_seq_with_assessments);                                                $only_seq_with_assessments);
     $Str .= '</td><td>'."\n";      $Str .= '</td><td>'.&field_selection_input();
     $Str .= &CreateAndParseOutputSelector();  
     $Str .= '</td></tr>'."\n";      $Str .= '</td></tr>'."\n";
     $Str .= '</table>'."\n";      $Str .= '</table>'."\n";
     return $Str;      $Str .= '<input type="submit" name="GenerateStatistics" value="'.
 }          &mt('Generate Statistics').'" />';
       $Str .= '&nbsp;'x5;
 #######################################################      $Str .= 'Plot '.&plot_dropdown().('&nbsp;'x10);
 #######################################################      $Str .= '<input type="submit" name="ClearCache" value="'.
           &mt('Clear Caches').'" />';
 =pod      $Str .= '&nbsp;'x5;
       $Str .= '<input type="submit" name="UpdateCache" value="'.
 =item &CreateAndParseOutputSelector()          &mt('Update Student Data').'" />';
       $Str .= '&nbsp;'x5;
 =cut      $Str .= '<input type="submit" name="Excel" value="'.
           &mt('Produce Excel Output').'" />';
 #######################################################      $Str .= '&nbsp;'x5;
 #######################################################  
 my $output_mode;  
 my $show;  
   
 my @OutputOptions =   
     (  
      { name  => 'problem statistics grouped by sequence',  
        value => 'HTML problem statistics grouped',  
        description => 'Output statistics for the problem parts.',  
        mode => 'html',  
        show => 'grouped',  
      },  
      { name  => 'problem statistics ungrouped',  
        value => 'HTML problem statistics ungrouped',  
        description => 'Output statistics for the problem parts.',  
        mode => 'html',  
        show => 'ungrouped',  
      },  
      { name  => 'problem statistics, Excel',  
        value => 'Excel problem statistics',  
        description => 'Output statistics for the problem parts '.  
            'in an Excel workbook',  
        mode => 'excel',  
        show => 'all',  
      },  
      { name  => 'Degree of Difficulty Plot',  
        value => 'plot deg diff',  
        description => 'Generate a plot of the degree of difficulty of each '.  
            'problem part.',  
        mode => 'plot',  
        show => 'deg of diff',  
      },  
      { name  => 'Percent Wrong Plot',  
        value => 'plot per wrong',  
        description => 'Generate a plot showing the percent of students who '.  
            'were unable to complete each problem part',  
        mode => 'plot',  
        show => 'per wrong',  
      },  
      );  
   
 sub OutputDescriptions {  
     my $Str = '';  
     $Str .= "<h2>Output Modes</h2>\n";  
     $Str .= "<dl>\n";  
     foreach my $outputmode (@OutputOptions) {  
  $Str .="    <dt>".$outputmode->{'name'}."</dt>\n";  
  $Str .="        <dd>".$outputmode->{'description'}."</dd>\n";  
     }  
     $Str .= "</dl>\n";  
     return $Str;  
 }  
   
 sub CreateAndParseOutputSelector {  
     my $Str = '';  
     my $elementname = 'outputmode';  
     #  
     # Format for output options is 'mode, restrictions';  
     my $selected = 'html, with links';  
     if (exists($ENV{'form.'.$elementname})) {  
         if (ref($ENV{'form.'.$elementname} eq 'ARRAY')) {  
             $selected = $ENV{'form.'.$elementname}->[0];  
         } else {  
             $selected = $ENV{'form.'.$elementname};  
         }  
     }  
     #  
     # Set package variables describing output mode  
     $output_mode = 'html';  
     $show        = 'all';  
     foreach my $option (@OutputOptions) {  
         next if ($option->{'value'} ne $selected);  
         $output_mode = $option->{'mode'};  
         $show        = $option->{'show'};  
     }  
     #  
     # Build the form element  
     $Str = qq/<select size="5" name="$elementname">/;  
     foreach my $option (@OutputOptions) {  
         $Str .= "\n".'    <option value="'.$option->{'value'}.'"';  
         $Str .= " selected " if ($option->{'value'} eq $selected);  
         $Str .= ">".$option->{'name'}."<\/option>";  
     }  
     $Str .= "\n</select>";  
     return $Str;      return $Str;
 }  }
   
 ###############################################  ###############################################
 ###############################################  ###############################################
   
 ###############################################  =pod 
 ###############################################  
 sub Gather_Student_Data {  
     my ($r) = @_;  
     my $c = $r->connection();  
     #  
     my @Sequences = &Apache::lonstatistics::Sequences_with_Assess();  
     #  
     my @Students = @Apache::lonstatistics::Students;  
     #  
     # Open the progress window  
     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin  
         ($r,'Statistics Compilation Status',  
          'Statistics Compilation Progress', scalar(@Students));  
     #  
     while (my $student = shift @Students) {  
         return if ($c->aborted());  
         my ($status,undef) = &Apache::loncoursedata::ensure_current_data  
             ($student->{'username'},$student->{'domain'},  
              $ENV{'request.course.id'});  
         &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,  
                                                  'last student');  
     }  
     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);  
     $r->rflush();  
 }  
   
 ###############################################  =item &BuildProblemStatisticsPage()
 ###############################################  
   Main interface to problem statistics.
   
   =cut
   
 ###############################################  ###############################################
 ###############################################  ###############################################
 sub BuildProblemStatisticsPage {  sub BuildProblemStatisticsPage {
     my ($r,$c)=@_;      my ($r,$c)=@_;
     #      #
     $output_mode = 'html';      my %Saveable_Parameters = ('Status' => 'scalar',
     $show = 'grouped';                                 'statsoutputmode' => 'scalar',
     #                                 'Section' => 'array',
     $r->print(&CreateInterface());                                 'StudentData' => 'array',
     $r->print('<input type="hidden" name="statsfirstcall" value="no" />');                                 'Maps' => 'array',
                                  'fieldselections'=> 'array');
       &Apache::loncommon::store_course_settings('statistics',
                                                 \%Saveable_Parameters);
       &Apache::loncommon::restore_course_settings('statistics',
                                                   \%Saveable_Parameters);
       #
       &Apache::lonstatistics::PrepareClasslist();
       #
       # Clear the package variables
       undef(@StatsArray);
       undef(%SeqStat);
       #
       # Finally let the user know we are here
       my $interface = &CreateInterface();
       $r->print($interface);
     $r->print('<input type="hidden" name="sortby" value="'.$ENV{'form.sortby'}.      $r->print('<input type="hidden" name="sortby" value="'.$ENV{'form.sortby'}.
               '" />');                '" />');
       #
     if (! exists($ENV{'form.statsfirstcall'})) {      if (! exists($ENV{'form.statsfirstcall'})) {
           $r->print('<input type="hidden" name="statsfirstcall" value="yes" />');
           $r->print('<h3>'.
                     &mt('Press "Generate Statistics" when you are ready.').
                     '</h3><p>'.
                     &mt('It may take some time to update the student data '.
                         'for the first analysis.  Future analysis this session '.
                         ' will not have this delay.').
                     '</p>');
         return;          return;
       } elsif ($ENV{'form.statsfirstcall'} eq 'yes' || 
                exists($ENV{'form.UpdateCache'}) ||
                exists($ENV{'form.ClearCache'}) ) {
           $r->print('<input type="hidden" name="statsfirstcall" value="no" />');
           &Apache::lonstatistics::Gather_Student_Data($r);
       } else {
           $r->print('<input type="hidden" name="statsfirstcall" value="no" />');
     }      }
       $r->rflush();
     #      #
     &Gather_Student_Data($r);      # This probably does not need to be done each time we are called, but
     #      # it does not slow things down noticably.
       &Apache::loncoursedata::populate_weight_table();
     #      #
     if ($output_mode eq 'html') {      if (exists($ENV{'form.Excel'})) {
         $r->print("<h2>".          &Excel_output($r);
                   $ENV{'course.'.$ENV{'request.course.id'}.'.description'}.  
                   "</h2>\n");  
         $r->print("<h3>".localtime(time)."</h3>");  
         $r->rflush();  
         if ($show eq 'grouped') {  
             &output_html_grouped_by_sequence($r);  
         } elsif ($show eq 'ungrouped') {  
             &output_html_ungrouped($r);  
         }  
     } elsif ($output_mode eq 'excel') {  
         $r->print("<h2>Preparing Excel Spreadsheet</h2>");  
         &output_excel($r);  
     } elsif ($output_mode eq 'plot') {  
         if ($show eq 'deg of diff') {  
             &plot_statistics($r,'DoDiff');  
         } elsif ($show eq 'per wrong') {  
             &plot_statistics($r,'%Wrng');  
         }  
     } else {      } else {
         $r->print("<h1>Not implemented</h1>");          my $count = 0;
           foreach my $seq (&Apache::lonstatistics::Sequences_with_Assess()) {
               $count += $seq->{'num_assess_parts'};
           }
           if ($count > 10) {
               $r->print('<h2>'.
                         &mt('Compiling statistics for [_1] problems',$count).
                         '</h2>');
               if ($count > 30) {
                   $r->print('<h3>'.&mt('This will take some time.').'</h3>');
               }
               $r->rflush();
           }
           #
           my $sortby = $ENV{'form.sortby'};
           $sortby = 'container' if (! defined($sortby) || $sortby =~ /^\s*$/);
           my $plot = $ENV{'form.plot'};
           if ($plot eq '' || $plot eq 'none') {
               undef($plot);
           }
           if ($sortby eq 'container' && ! defined($plot)) {
               &output_sequence_statistics($r);
               &output_html_by_sequence($r);
           } else {
               if (defined($plot)) {
                   &make_plot($r,$plot);
               }
               &output_html_stats($r);
               &output_sequence_statistics($r);
           }
     }      }
     return;      return;
 }  }
   
 ###############################################  sub output_sequence_statistics {
 ###############################################      my ($r) = @_;
       my $c=$r->connection();
       $r->print('<h2>'.&mt('Sequence Statistics').'</h2>');
       $r->print('<table border="0"><tr><td bgcolor="#777777">'."\n".
                 '<table border="0" cellpadding="3">'."\n".
                 '<tr bgcolor="#FFFFE6">');
       $r->print(&sequence_html_header());
       foreach my $seq (&Apache::lonstatistics::Sequences_with_Assess()) {
           last if ($c->aborted);
           next if ($seq->{'num_assess'} < 1);
           &compute_sequence_statistics($seq);
           $r->print(&sequence_html_output($seq));
       }
       $r->print('</table>');
       $r->print('</table>');
       $r->rflush();
       return;
   }
   
 ###############################################  
 ###############################################  ##########################################################
 sub output_html_grouped_by_sequence {  ##########################################################
   ##
   ## HTML output routines
   ##
   ##########################################################
   ##########################################################
   sub output_html_by_sequence {
     my ($r) = @_;      my ($r) = @_;
     my $problem_num = 0;      my $c = $r->connection();
     #$r->print(&ProblemStatisticsLegend());      $r->print(&html_preamble());
     my @Header = ("Title","Part","#Stdnts","Tries","Mod",      #
                   "Mean","#YES","#yes","%Wrng","DoDiff",      foreach my $seq (&Apache::lonstatistics::Sequences_with_Assess()) {
                   "S.D.","Skew.");#,"D.F.1st","D.F.2nd");          last if ($c->aborted);
     # #FFFFE6 #EEFFCC #DDFFFF FFDDDD #DDFFDD #FFDDFF          next if ($seq->{'num_assess'} < 1);
     foreach my $sequence (&Apache::lonstatistics::Sequences_with_Assess()) {          $r->print("<h3>".$seq->{'title'}."</h3>".
         my $show_part = 0;                    '<table border="0"><tr><td bgcolor="#777777">'."\n".
         next if ($sequence->{'num_assess'}<1);                    '<table border="0" cellpadding="3">'."\n".
         $r->print("<h3>".$sequence->{'title'}."</h3>");                    '<tr bgcolor="#FFFFE6">'.
         $r->print('<table border="0"><tr><td bgcolor="#777777">'."\n");                    &statistics_table_header('no container')."</tr>\n");
         $r->print('<table border="0" cellpadding="3">'."\n");          my @Data = &compute_statistics_on_sequence($seq);
         $r->print('<tr bgcolor="#FFFFE6"><th>'.          foreach my $data (@Data) {
                   join("</th><th>",@Header)."</th></tr>\n");              $r->print('<tr>'.&statistics_html_table_data($data,
         foreach my $resource (@{$sequence->{'contents'}}) {                                                           'no container').
             next if ($resource->{'type'} ne 'assessment');                        "</tr>\n");
             foreach my $part (@{$resource->{'parts'}}) {  
                 $problem_num++;  
                 my ($num,$tries,$mod,$mean,$Solved,$solved,$DegOfDiff,$STD,  
                     $SKEW) = &Apache::loncoursedata::get_problem_statistics  
                         (undef,$resource->{'symb'},$part,  
                          $ENV{'request.course.id'});  
                 #  
                 $show_part = 1 if ($part ne '0');  
                 $part = '&nbsp;' if ($part == 0);  
                 #  
                 my $wrongpercent = 0;  
                 if (defined($num) && $num > 0) {  
                     $wrongpercent=int(10*100*($num-$Solved+$solved)/$num)/10;  
                 }  
                 my $option = '';  
                 $option .= 'no part' if (! $show_part);  
                 $r->print('<tr>'.&statistics_html_table_data  
                           ($resource,$part,$num,$tries,$mod,$mean,$Solved,  
                            $solved,$wrongpercent,$DegOfDiff,$STD,$SKEW,  
                            $option).  
                           "</tr>\n");  
             }  
         }          }
         $r->print("</table>\n");          $r->print('</table>'."\n".'</table>'."\n");
         $r->print("</td></tr></table>\n");  
         $r->rflush();          $r->rflush();
     }      }
     #  
     return;      return;
 }  }
   
   sub output_html_stats {
       my ($r)=@_;
       &compute_all_statistics($r);
       $r->print(&html_preamble());
       &sort_data($ENV{'form.sortby'});
       #
       my $count=0;
       foreach my $data (@StatsArray) {
           if ($count++ % 50 == 0) {
               $r->print("</table>\n</table>\n");
               $r->print('<table border="0"><tr><td bgcolor="#777777">'."\n".
                         '<table border="0" cellpadding="3">'."\n".
                         '<tr bgcolor="#FFFFE6">'.
                         '<tr bgcolor="#FFFFE6">'.
                         &statistics_table_header().
                         "</tr>\n");
           }
           $r->print('<tr>'.&statistics_html_table_data($data)."</tr>\n");
       }
       $r->print("</table>\n</table>\n");
       return;
   }
   
   sub html_preamble {
       my $Str='';
       $Str .= "<h2>".
           $ENV{'course.'.$ENV{'request.course.id'}.'.description'}.
           "</h2>\n";
       my ($starttime,$endtime) = &Apache::lonstathelpers::get_time_limits();
       if (defined($starttime) || defined($endtime)) {
           # Inform the user what the time limits on the data are.
           $Str .= '<h3>'.&mt('Statistics on submissions from [_1] to [_2]',
                              &Apache::lonlocal::locallocaltime($starttime),
                              &Apache::lonlocal::locallocaltime($endtime)
                              ).'</h3>';
       }
       $Str .= "<h3>".&mt('Compiled on [_1]',
                          &Apache::lonlocal::locallocaltime(time))."</h3>";
       return $Str;
   }
   
   
 ###############################################  ###############################################
 ###############################################  ###############################################
   ##
   ## Misc HTML output routines
   ##
 ###############################################  ###############################################
 ###############################################  ###############################################
 sub output_html_ungrouped {  sub statistics_html_table_data {
     my ($r,$option) = @_;      my ($data,$options) = @_;
     #      my $row = '';
     my $problem_num = 0;      foreach my $field (@Fields) {
     my $show_container = 0;          next if ($options =~ /no $field->{'name'}/);
     my $show_part = 0;          next if ($field->{'selected'} ne 'yes');
     #$r->print(&ProblemStatisticsLegend());          $row .= '<td bgcolor="'.$field->{'color'}.'"';
     my @Header = ("Title","Part","#Stdnts","Tries","Mod",          if (exists($field->{'align'})) {
                   "Mean","#YES","#yes","%Wrng","DoDiff",              $row .= ' align="'.$field->{'align'}.'"';
                   "S.D.","Skew");#,"D.F.1st","D.F.2nd");              }
     #          $row .= '>';
     my $sortby = undef;          if (exists($field->{'special'}) && $field->{'special'} eq 'link') {
     foreach (@Header) {              $row .= '<a href="'.$data->{$field->{'name'}.'.link'}.'">';
         if ($ENV{'form.sortby'} eq $_) {  
             $sortby = $_;  
         }          }
           if (exists($field->{'format'})) {
               $row .= sprintf($field->{'format'},$data->{$field->{'name'}});
           } else {
               $row .= $data->{$field->{'name'}};
           }
           if (exists($field->{'special'}) && $field->{'special'} eq 'link') {
               $row.= '</a>';
           }
           $row .= '</td>';
       }
       return $row;
   }
   
   sub statistics_table_header {
       my ($options) = @_;
       my $header_row;
       foreach my $field (@Fields) {
           next if ($options =~ /no $field->{'name'}/);
           next if ($field->{'selected'} ne 'yes');
           $header_row .= '<th>';
           if (exists($field->{'sortable'}) && $field->{'sortable'} eq 'yes') {
               $header_row .= '<a href="javascript:'.
                   'document.Statistics.sortby.value='."'".$field->{'name'}."'".
                       ';document.Statistics.submit();">';
           }
           $header_row .= &mt($field->{'title'});
           if ($options =~ /sortable/) {
               $header_row.= '</a>';
           }
           if ($options !~ /no plots/        && 
               exists($field->{'graphable'}) && 
               $field->{'graphable'} eq 'yes') {
               $header_row.=' (';
               $header_row .= '<a href="javascript:'.
                   "document.Statistics.plot.value='$field->{'name'}'".
                       ';document.Statistics.submit();">';
               $header_row .= &mt('plot').'</a>)';
           }
           $header_row .= '</th>';
     }      }
     if (! defined($sortby) || $sortby eq '') {      return $header_row;
         $sortby = 'Container';  }
   
   sub sequence_html_header {
       my $Str .= '<tr>';
       foreach my $field (@SeqFields) {
   #        next if ($field->{'selected'} ne 'yes');
           $Str .= '<th bgcolor="'.$field->{'color'}.'"';
           $Str .= '>'.$field->{'title'}.'</th>';
     }      }
     # If there is more than one sequence, list their titles      $Str .= '</tr>';
     my @Sequences = &Apache::lonstatistics::Sequences_with_Assess();      return $Str;
     if (@Sequences > 1) {  }
         unshift(@Header,"Container");  
         $show_container = 1;  
   sub sequence_html_output {
       my ($seq) = @_;
       my $data = $SeqStat{$seq->{'symb'}};
       my $row = '<tr>';
       foreach my $field (@SeqFields) {
           next if ($field->{'selected'} ne 'yes');
           $row .= '<td bgcolor="'.$field->{'color'}.'"';
           if (exists($field->{'align'})) {
               $row .= ' align="'.$field->{'align'}.'"';
           }
           $row .= '>';
           if (exists($field->{'format'})) {
               $row .= sprintf($field->{'format'},$data->{$field->{'name'}});
           } else {
               $row .= $data->{$field->{'name'}};
           }
           $row .= '</td>';
     }      }
     #       $row .= '</tr>'."\n";
     # If the option for showing the problem number is needed, push that      return $row;
     # on the list too  }
     if (defined($option) && $option =~ /show probnum/) {  
         unshift(@Header,"P#");  ####################################################
   ####################################################
   ##
   ##    Plotting Routines
   ##
   ####################################################
   ####################################################
   sub make_plot {
       my ($r,$plot) = @_;
       &compute_all_statistics($r);
       &sort_data($ENV{'form.sortby'});
       if ($plot eq 'degrees') {
           &degrees_plot($r);
       } elsif ($plot eq 'tries statistics') {
           &tries_data_plot($r);
       } else {
           &make_single_stat_plot($r,$plot);
     }      }
       return;
   }
   
   sub make_single_stat_plot {
       my ($r,$datafield) = @_;
     #      #
     $r->print('<table border="0"><tr><td bgcolor="#777777">'."\n");      my $title; my $yaxis;
     $r->rflush();      foreach my $field (@Fields) {
           next if ($field->{'name'} ne $datafield);
           $title = $field->{'long_title'};
           $yaxis = $field->{'title'};
           last;
       }
       if ($title eq '' || $yaxis eq '') {
           # datafield is something we do not know enough about to plot
           $r->print('<h3>'.
                     &mt('Unable to plot the requested statistic.').
                     '</h3>');
           return;
       }
     #      #
     # Compile the data      # Build up the data sets to plot
     my @Statsarray;      my @Labels; 
     foreach my $sequence (@Sequences) {      my @Data;
         next if ($sequence->{'num_assess'}<1);      my $max = 1;
         foreach my $resource (@{$sequence->{'contents'}}) {      foreach my $data (@StatsArray) {
             next if ($resource->{'type'} ne 'assessment');          push(@Labels,$data->{'problem_num'});
             foreach my $part (@{$resource->{'parts'}}) {          push(@Data,$data->{$datafield});
                 $problem_num++;          if ($data->{$datafield}>$max) {
                 my ($num,$tries,$mod,$mean,$Solved,$solved,$DegOfDiff,$STD,              $max = $data->{$datafield};
                     $SKEW) = &Apache::loncoursedata::get_problem_statistics          }
                         (undef,$resource->{'symb'},$part,      }
                          $ENV{'request.course.id'});      foreach (1,2,3,4,5,10,15,20,25,40,50,75,100,150,200,250,300,500,600,750,
                 #               1000,1500,2000,2500,3000,3500,4000,5000,7500,10000,15000,20000) {
                 $show_part = 1 if ($part ne '0');          if ($max <= $_) {
                 $part = '&nbsp;' if ($part == 0);              $max = $_;
                 #              last;
                 my $wrongpercent = 0;  
                 if (defined($num) && $num > 0) {  
                     $wrongpercent=int(10*100*($num-$Solved+$solved)/$num)/10;  
                 }  
                 push (@Statsarray,  
                       { 'sequence' => $sequence,  
                         'resource' => $resource,  
                         'Title' => $resource->{'title'},  
                         'Part'  => $part,  
                         '#Stdnts' => $num,  
                         'Tries' => $tries,  
                         'Mod' => $mod,  
                         'Mean' => $mean,  
                         '#YES' => $Solved,  
                         '#yes' => $solved,  
                         '%Wrng' => $wrongpercent,  
                         'DoDiff' => $DegOfDiff,  
                         'S.D.' => $STD,  
                         'Skew' => $SKEW,  
                         'problem_num' => $problem_num,  
                       });  
             }  
         }          }
     }      }
       if ($max > 20000) {
           $max = 10000*(int($max/10000)+1);
       }
     #      #
     # Table Headers      $r->print("<p>".&Apache::loncommon::DrawBarGraph($title,
     $r->print('<table border="0" cellpadding="3">'."\n");                                                       'Problem Number',
     my $Str = '';                                                       $yaxis,
     foreach (@Header) {                                                       $max,
         next if ($_ eq 'Part' && !$show_part);                                                       undef, # colors
         # Do not allow sorting on some fields                                                       \@Labels,
         if ($_ eq $sortby || /^(Part|P\#)$/) {                                                         \@Data)."</p>\n");
             $Str .= '<th>'.$_.'</th>';      return;
   }
   
   sub degrees_plot {
       my ($r)=@_;
       my $count = scalar(@StatsArray);
       my $width = 50 + 10*$count;
       $width = 300 if ($width < 300);
       my $height = 300;
       my $plot = '';
       my $ymax = 0;
       my $ymin = 0;
       my @Disc; my @Diff; my @Labels;    
       foreach my $data (@StatsArray) {
           push(@Labels,$data->{'problem_num'});
           my $disc = $data->{'deg_of_disc'};
           my $diff = $data->{'deg_of_diff'};
           push(@Disc,$disc);
           push(@Diff,$diff);
           #
           $ymin = $disc if ($ymin > $disc);
           $ymin = $diff if ($ymin > $diff);
           $ymax = $disc if ($ymax < $disc);
           $ymax = $diff if ($ymax < $diff);
       }
       #
       # Make sure we show relevant information.
       if ($ymin < 0) {
           if (abs($ymin) < 0.05) {
               $ymin = 0;
           } else {
               $ymin = -1;
           }
       }
       if ($ymax > 0) {
           if (abs($ymax) < 0.05) {
               $ymax = 0;
         } else {          } else {
             $Str .= '<th>'.              $ymax = 1;
      '<a href="javascript:document.Statistics.sortby.value='."'$_'".  
          ';document.Statistics.submit();">'.  
              $_.'</a></th>';  
         }          }
     }      }
     $r->print('<tr bgcolor="#FFFFE6">'.$Str."</tr>\n");  
     #      #
     # Sort the data      my $xmax = $Labels[-1];
     my @OutputOrder;      if ($xmax > 50) {
     if ($sortby eq 'Container') {          if ($xmax % 10 != 0) {
         @OutputOrder = @Statsarray;              $xmax = 10 * (int($xmax/10)+1);
           }
     } else {      } else {
         # $sortby is already defined, so we can charge ahead          if ($xmax % 5 != 0) {
         if ($sortby =~ /^(title|part)$/i) {              $xmax = 5 * (int($xmax/5)+1);
             # Alpha comparison  
             @OutputOrder = sort {  
                 lc($a->{$sortby}) cmp lc($b->{$sortby}) ||  
                     lc($a->{'Title'}) cmp lc($b->{'Title'}) ||  
                         lc($a->{'Part'}) cmp lc($b->{'Part'});  
             } @Statsarray;  
         } else {  
             # Numerical comparison  
             @OutputOrder = sort {  
                 my $retvalue = 0;  
                 if ($b->{$sortby} eq 'nan') {  
                     if ($a->{$sortby} ne 'nan') {  
                         $retvalue = -1;  
                     } else {  
                         $retvalue = 0;  
                     }  
                 }  
                 if ($a->{$sortby} eq 'nan') {  
                     if ($b->{$sortby} ne 'nan') {  
                         $retvalue = 1;  
                     }  
                 }  
                 if ($retvalue eq '0') {  
                     $retvalue = $b->{$sortby} <=> $a->{$sortby} ||  
                                 lc($a->{'Title'}) <=> lc($b->{'Title'}) ||  
                                 lc($a->{'Part'})  <=> lc($b->{'Part'});  
                 }  
                 $retvalue;  
             } @Statsarray;  
         }          }
     }      }
     $option .= ',no part' if (! $show_part);      #
     foreach my $row (@OutputOrder) {      my $discdata .= '<data>'.join(',',@Labels).'</data>'.$/.
         $r->print('<tr>');                      '<data>'.join(',',@Disc).'</data>'.$/;
         if (defined($option) && $option =~ /show probnum/) {      #
             $r->print('<td bgcolor="#FFFFE6">'.$row->{'problem_num'}.'</td>');      my $diffdata .= '<data>'.join(',',@Labels).'</data>'.$/.
         }                      '<data>'.join(',',@Diff).'</data>'.$/;
         if ($show_container) {      #
             $r->print('<td bgcolor="#FFFFE6">'      my $title = 'Degree of Discrimination\nand Degree of Difficulty';
                       .$row->{'sequence'}->{'title'}.'</td>');      if ($xmax > 50) {
         }          $title = 'Degree of Discrimination and Degree of Difficulty';
         $r->print(&statistics_html_table_data      }
                   ($row->{'resource'},$row->{'Part'},$row->{'#Stdnts'},      #
                    $row->{'Tries'},$row->{'Mod'},$row->{'Mean'},      $plot=<<"END";
                    $row->{'#YES'},$row->{'#yes'},$row->{"\%Wrng"},  <gnuplot 
                    $row->{'DoDiff'},$row->{'S.D.'},$row->{'Skew'},      texfont="10"
                    $option));      fgcolor="x000000"
       plottype="Cartesian"
       font="large"
       grid="on"
       align="center"
       border="on"
       transparent="on"
       alttag="Degree of Discrimination and Degree of Difficulty Plot"
       samples="100"
       bgcolor="xffffff"
       height="$height"
       width="$width">
       <key 
           pos="top right"
           title=""
           box="off" />
       <title>$title</title>
       <axis xmin="0" ymin="$ymin" xmax="$xmax" ymax="$ymax" color="x000000" />
       <xlabel>Problem Number</xlabel>
       <curve 
           linestyle="linespoints" 
           name="DoDisc" 
           pointtype="0" 
           color="x000000">
           $discdata
       </curve>
       <curve 
           linestyle="linespoints" 
           name="DoDiff" 
           pointtype="0" 
           color="xFF0000">
           $diffdata
       </curve>
   </gnuplot>
   END
       my $plotresult = 
           '<p>'.&Apache::lonxml::xmlparse($r,'web',$plot).'</p>'.$/;
       $r->print($plotresult);
       return;
   }
   
         $r->print("</tr>\n");  sub tries_data_plot {
       my ($r)=@_;
       my $count = scalar(@StatsArray);
       my $width = 50 + 10*$count;
       $width = 300 if ($width < 300);
       my $height = 300;
       my $plot = '';
       my @STD;  my @Mean; my @Max; my @Min;
       my @Labels;
       my $ymax = 5;
       foreach my $data (@StatsArray) {
           my $max = $data->{'mean_tries'} + $data->{'std_tries'};
           $ymax = $max if ($ymax < $max);
           $ymax = $max if ($ymax < $max);
           push(@Labels,$data->{'problem_num'});
           push(@STD,$data->{'std_tries'});
           push(@Mean,$data->{'mean_tries'});
       }
       #
       # Make sure we show relevant information.
       my $xmax = $Labels[-1];
       if ($xmax > 50) {
           if ($xmax % 10 != 0) {
               $xmax = 10 * (int($xmax/10)+1);
           }
       } else {
           if ($xmax % 5 != 0) {
               $xmax = 5 * (int($xmax/5)+1);
           }
     }      }
     $r->print("</table>\n");      $ymax = int($ymax)+1+2;
     $r->print("</td></tr></table>\n");      #
     $r->rflush();      my $std_data .= '<data>'.join(',',@Labels).'</data>'.$/.
                       '<data>'.join(',',@Mean).'</data>'.$/;
     #      #
       my $std_error_data .= '<data>'.join(',',@Labels).'</data>'.$/.
                             '<data>'.join(',',@Mean).'</data>'.$/.
                             '<data>'.join(',',@STD).'</data>'.$/;
       #
       my $title = 'Mean and S.D. of Tries';
       if ($xmax > 25) {
           $title = 'Mean and Standard Deviation of Tries';
       }
       #
       $plot=<<"END";
   <gnuplot 
       texfont="10"
       fgcolor="x000000"
       plottype="Cartesian"
       font="large"
       grid="on"
       align="center"
       border="on"
       transparent="on"
       alttag="Mean and S.D of Tries Plot"
       samples="100"
       bgcolor="xffffff"
       height="$height"
       width="$width">
       <title>$title</title>
       <axis xmin="0" ymin="0" xmax="$xmax" ymax="$ymax" color="x000000" />
       <xlabel>Problem Number</xlabel>
       <ylabel>Number of Tries</ylabel>
       <curve 
           linestyle="yerrorbars"
           name="S.D. Tries" 
           pointtype="1" 
           color="x666666">
           $std_error_data
       </curve>
       <curve 
           linestyle="points"
           name="Mean Tries" 
           pointtype="1" 
           color="xCC4444">
           $std_data
       </curve>
   </gnuplot>
   END
       my $plotresult = 
           '<p>'.&Apache::lonxml::xmlparse($r,'web',$plot).'</p>'.$/;
       $r->print($plotresult);
     return;      return;
 }  }
   
   sub plot_dropdown {
       my $current = '';
       #
       if (defined($ENV{'form.plot'})) {
           $current = $ENV{'form.plot'};
       }
       #
       my @Additional_Plots = (
                               { graphable=>'yes',
                                 name => 'degrees',
                                 title => 'Difficulty Indexes' },
                               { graphable=>'yes',
                                 name => 'tries statistics',
                                 title => 'Tries Statistics' });
       #
       my $Str= "\n".'<select name="plot" size="1">';
       $Str .= '<option name="none"></option>'."\n";
       $Str .= '<option name="none2">none</option>'."\n";
       foreach my $field (@Additional_Plots,@Fields) {
           if (! exists($field->{'graphable'}) ||
               $field->{'graphable'} ne 'yes') {
               next;
           }
           $Str .= '<option value="'.$field->{'name'}.'"';
           if ($field->{'name'} eq $current) {
               $Str .= ' selected ';
           }
           $Str.= '>'.&mt($field->{'title'}).'</option>'."\n";
       }
       $Str .= '</select>'."\n";
       return $Str;
   }
   
 ###############################################  ###############################################
 ###############################################  ###############################################
   ##
   ## Excel output routines
   ##
 ###############################################  ###############################################
 ###############################################  ###############################################
 sub output_excel {  sub Excel_output {
     my ($r) = @_;      my ($r) = @_;
       $r->print('<h2>'.&mt('Preparing Excel Spreadsheet').'</h2>');
       ##
       ## Compute the statistics
       &compute_all_statistics($r);
       my $c = $r->connection;
       return if ($c->aborted());
       ##
       ## Create the excel workbook
     my $filename = '/prtspool/'.      my $filename = '/prtspool/'.
         $ENV{'user.name'}.'_'.$ENV{'user.domain'}.'_'.          $ENV{'user.name'}.'_'.$ENV{'user.domain'}.'_'.
             time.'_'.rand(1000000000).'.xls';          time.'_'.rand(1000000000).'.xls';
     #      my ($starttime,$endtime) = &Apache::lonstathelpers::get_time_limits();
     my $excel_workbook = undef;  
     my $excel_sheet = undef;  
     #  
     my $rows_output = 0;  
     my $cols_output = 0;  
     #      #
     # Create sheet      # Create sheet
     $excel_workbook = Spreadsheet::WriteExcel->new('/home/httpd'.$filename);      my $excel_workbook = Spreadsheet::WriteExcel->new('/home/httpd'.$filename);
     #      #
     # Check for errors      # Check for errors
     if (! defined($excel_workbook)) {      if (! defined($excel_workbook)) {
         $r->log_error("Error creating excel spreadsheet $filename: $!");          $r->log_error("Error creating excel spreadsheet $filename: $!");
         $r->print("Problems creating new Excel file.  ".          $r->print(&mt("Problems creating new Excel file.  ".
                   "This error has been logged.  ".                    "This error has been logged.  ".
                   "Please alert your LON-CAPA administrator");                    "Please alert your LON-CAPA administrator."));
         return ;          return 0;
     }      }
     #      #
     # The excel spreadsheet stores temporary data in files, then put them      # The excel spreadsheet stores temporary data in files, then put them
Line 503  sub output_excel { Line 1219  sub output_excel {
     if (length($sheetname) > 31) {      if (length($sheetname) > 31) {
         $sheetname = substr($sheetname,0,31);          $sheetname = substr($sheetname,0,31);
     }      }
     $excel_sheet = $excel_workbook->addworksheet($sheetname);      my $excel_sheet = $excel_workbook->addworksheet(
           &Apache::loncommon::clean_excel_name($sheetname));
       #
       my $format = &Apache::loncommon::define_excel_formats($excel_workbook);
       ##
       ## Begin creating excel sheet
       ##
       my ($rows_output,$cols_output) = (0,0);
     #      #
     # Put the course description in the header      # Put the course description in the header
     $excel_sheet->write($rows_output,$cols_output++,      $excel_sheet->write($rows_output,$cols_output++,
                    $ENV{'course.'.$ENV{'request.course.id'}.'.description'});                     $ENV{'course.'.$ENV{'request.course.id'}.'.description'},
                           $format->{'h1'});
     $cols_output += 3;      $cols_output += 3;
     #      #
     # Put a description of the sections listed      # Put a description of the sections listed
     my $sectionstring = '';      my $sectionstring = '';
     my @Sections = @Apache::lonstatistics::SelectedSections;      $excel_sheet->write($rows_output,$cols_output++,
     if (scalar(@Sections) > 1) {                          &Apache::lonstathelpers::sections_description
         if (scalar(@Sections) > 2) {                              (@Apache::lonstatistics::SelectedSections),
             my $last = pop(@Sections);                          $format->{'h3'});
             $sectionstring = "Sections ".join(', ',@Sections).', and '.$last;      $cols_output += scalar(@Apache::lonstatistics::SelectedSections);
         } else {      #
             $sectionstring = "Sections ".join(' and ',@Sections);      # Time restrictions
         }      my $time_string;
     } else {      if (defined($starttime)) {
         if ($Sections[0] eq 'all') {          # call localtime but not lonlocal:locallocaltime because excel probably
             $sectionstring = "All sections";          # cannot handle localized text.  Probably.
         } else {          $time_string .= 'Data collected from '.localtime($time_string);
             $sectionstring = "Section ".$Sections[0];          if (defined($endtime)) {
               $time_string .= ' to '.localtime($endtime);
         }          }
           $time_string .= '.';
       } elsif (defined($endtime)) {
           # See note above about lonlocal:locallocaltime
           $time_string .= 'Data collected before '.localtime($endtime).'.';
       }
       if (defined($time_string)) {
           $excel_sheet->write($rows_output,$cols_output++,$time_string);
           $cols_output+= 5;
     }      }
     $excel_sheet->write($rows_output,$cols_output++,$sectionstring);  
     $cols_output += scalar(@Sections);  
     #      #
     # Put the date in there too      # Put the date in there too
     $excel_sheet->write($rows_output,$cols_output++,      $excel_sheet->write($rows_output,$cols_output++,
Line 536  sub output_excel { Line 1267  sub output_excel {
     #      #
     $rows_output++;       $rows_output++; 
     $cols_output=0;      $cols_output=0;
     #      ##
     # Add the headers      ## Sequence Statistics
     my @Header = ("Container","Title","Part","#Stdnts","Tries","Mod",      ## 
                   "Mean","#YES","#yes","%Wrng","DoDiff",      &write_headers($excel_sheet,$format,\$rows_output,\$cols_output,
                   "S.D.","Skew.");#,"D.F.1st","D.F.2nd");                     \@SeqFields);
     foreach (@Header) {      foreach my $seq (&Apache::lonstatistics::Sequences_with_Assess()) {
         $excel_sheet->write($rows_output,$cols_output++,$_);          next if ($seq->{'num_assess'} < 1);
           my $data = $SeqStat{$seq->{'symb'}};
           $cols_output=0;
           foreach my $field (@SeqFields) {
               next if ($field->{'selected'} ne 'yes');
               my $fieldformat = undef;
               if (exists($field->{'excel_format'})) {
                   $fieldformat = $format->{$field->{'excel_format'}};
               }
               $excel_sheet->write($rows_output,$cols_output++,
                                   $data->{$field->{'name'}},$fieldformat);
           }
           $rows_output++;
           $cols_output=0;
     }      }
       ##
       ## Resource Statistics
       ##
     $rows_output++;      $rows_output++;
       $cols_output=0;
       &write_headers($excel_sheet,$format,\$rows_output,\$cols_output,
                      \@Fields);
     #      #
     # Write the data      foreach my $data (@StatsArray) {
     foreach my $sequence (&Apache::lonstatistics::Sequences_with_Assess()) {          $cols_output=0;
         next if ($sequence->{'num_assess'}<1);          foreach my $field (@Fields) {
         foreach my $resource (@{$sequence->{'contents'}}) {              next if ($field->{'selected'} ne 'yes');
             next if ($resource->{'type'} ne 'assessment');              next if ($field->{'name'} eq 'problem_num');
             foreach my $part (@{$resource->{'parts'}}) {              my $fieldformat = undef;
                 $cols_output=0;              if (exists($field->{'excel_format'})) {
                 my ($num,$tries,$mod,$mean,$Solved,$solved,$DegOfDiff,$STD,                  $fieldformat = $format->{$field->{'excel_format'}};
                     $SKEW) = &Apache::loncoursedata::get_problem_statistics  
                         (undef,$resource->{'symb'},$part,  
                          $ENV{'request.course.id'});  
                 #  
                 if (!defined($part) || $part eq '') {  
                     $part = ' ';  
                 }  
                 my $wrongpercent = 0;  
                 if (defined($num) && $num > 0) {  
                     $wrongpercent=int(10*100*($num-$Solved+$solved)/$num)/10;  
                 }  
                 foreach ($sequence->{'title'},$resource->{'title'},$part,  
                          $num,$tries,$mod,$mean,$Solved,$solved,$wrongpercent,  
                          $DegOfDiff,$STD,$SKEW) {  
                     $excel_sheet->write($rows_output,$cols_output++,$_);  
                 }  
                 $rows_output++;  
             }              }
               $excel_sheet->write($rows_output,$cols_output++,
                                   $data->{$field->{'name'}},$fieldformat);
         }          }
           $rows_output++;
           $cols_output=0;
     }      }
     #      #
     # Write the excel file  
     $excel_workbook->close();      $excel_workbook->close();
       #
     # Tell the user where to get their excel file      # Tell the user where to get their excel file
     $r->print('<br />'.      $r->print('<br />'.
               '<a href="'.$filename.'">Your Excel spreadsheet.</a>'."\n");                '<a href="'.$filename.'">'.
                 &mt('Your Excel Spreadsheet').'</a>'."\n");
     $r->rflush();      $r->rflush();
     return;      return;
 }  }
   
 ###############################################  ##
 ###############################################  ## &write_headers
   ##
 ###############################################  sub write_headers {
 ###############################################      my ($excel_sheet,$format,$rows_output,$cols_output,$Fields) = @_;
 sub statistics_html_table_data {      ##
     my ($resource,$part,$num,$tries,$mod,$mean,$Solved,$solved,$wrongpercent,      ## First the long titles
         $DegOfDiff,$STD,$SKEW,$options) = @_;      foreach my $field (@{$Fields}) {
     my $row = '';          next if ($field->{'name'} eq 'problem_num');
     $row .= '<td bgcolor="#FFFFE6">'.          next if ($field->{'selected'} ne 'yes');
         '<a href="'.$resource->{'src'}.'" target="_blank" >'.          if (exists($field->{'long_title'})) {
             $resource->{'title'}.'</a>'.              $excel_sheet->write($$rows_output,${$cols_output},
                 '</td>';                                  $field->{'long_title'},
     $row .= '<td bgcolor="#FFFFE6">'.$part.'</td>' if ($options !~ /no part/);                                  $format->{'bold'});
     foreach ($num,$tries) {          } else {
         $row .= '<td bgcolor="#EEFFCC" align="right">'.$_.'</td>';              $excel_sheet->write($$rows_output,${$cols_output},'');
     }          }
     foreach ($mod,$mean) {          ${$cols_output}+= 1;
         $row .= '<td bgcolor="#DDFFFF" align="right">'.  
                   sprintf("%5.2f",$_).'</td>';  
     }  
     foreach ($Solved,$solved) {  
         $row .= '<td bgcolor="#DDFFFF" align="right">'.$_.'</td>';  
     }  
     foreach ($wrongpercent) {  
         $row .= '<td bgcolor="#DDFFFF" align="right">'.  
                   sprintf("%5.1f",$_).'</td>';  
     }  
     foreach ($DegOfDiff,$STD,$SKEW) {  
         $row .= '<td bgcolor="#FFDDDD" align="right">'.  
                   sprintf("%5.2f",$_).'</td>';  
     }      }
     return $row;      ${$cols_output} =0;
       ${$rows_output}+=1;
       ##
       ## Then the short titles
       foreach my $field (@{$Fields}) {
           next if ($field->{'selected'} ne 'yes');
           next if ($field->{'name'} eq 'problem_num');
           # Use english for excel as I am not sure how well excel handles 
           # other character sets....
           $excel_sheet->write($$rows_output,$$cols_output,
                               $field->{'title'},
                               $format->{'bold'});
           $$cols_output+=1;
       }
       ${$cols_output} =0;
       ${$rows_output}+=1;
       return;
 }  }
   
 ###############################################  ##################################################
 ###############################################  ##################################################
 sub plot_statistics {  ##
     my ($r,$datafield) = @_;  ## Statistics Gathering and Manipulation Routines
   ##
   ##################################################
   ##################################################
   sub compute_statistics_on_sequence {
       my ($seq) = @_;
     my @Data;      my @Data;
     #      foreach my $res (@{$seq->{'contents'}}) {
     my %Fields = ('#Stdnts'=> 0,          next if ($res->{'type'} ne 'assessment');
                   'Tries'  => 1,          foreach my $part (@{$res->{'parts'}}) {
                   'Mod'    => 2,              #
                   'Mean'   => 3,              # This is where all the work happens
                   '#YES'   => 4,              my $data = &get_statistics($seq,$res,$part,scalar(@StatsArray)+1);
                   '#yes'   => 5,              push (@Data,$data);
                   '%Wrng'  => 9,              push (@StatsArray,$data);
                   'DoDiff' => 6,  
                   'S.D.'   => 7,  
                   'Skew'   => 8,);  
     #  
     my $field = '%Wrng';  
     foreach (keys(%Fields)) {  
         $field = $_ if ($datafield eq $_);  
     }  
     my $fieldindex = $Fields{$field};  
     #  
     my $Max = 0;  
     foreach my $sequence (&Apache::lonstatistics::Sequences_with_Assess()) {  
         next if ($sequence->{'num_assess'}<1);  
         foreach my $resource (@{$sequence->{'contents'}}) {  
             next if ($resource->{'type'} ne 'assessment');  
             foreach my $part (@{$resource->{'parts'}}) {  
                 my @Results = &Apache::loncoursedata::get_problem_statistics  
                         (undef,$resource->{'symb'},$part,  
                          $ENV{'request.course.id'});  
                 my ($num,$Solved,$solved) = @Results[0,4,5];  
                 my $wrongpercent = 0;  
                 if (defined($num) && $num > 0) {  
                     $wrongpercent=int(10*100*($num-$Solved+$solved)/$num)/10;  
                 }  
                 push (@Results,$wrongpercent);  
                 my $data = $Results[$fieldindex];  
                 $Max = $data if ($Max<$data);  
                 push (@Data,$data);  
             }  
         }          }
     }      }
       return @Data;
   }
   
   sub compute_all_statistics {
       my ($r) = @_;
       if (@StatsArray > 0) {
           # Assume we have already computed the statistics
           return;
       }
       my $c = $r->connection;
       foreach my $seq (&Apache::lonstatistics::Sequences_with_Assess()) {
           last if ($c->aborted);
           next if ($seq->{'num_assess'} < 1);
           &compute_sequence_statistics($seq);
           &compute_statistics_on_sequence($seq);
       }
   }
   
   sub sort_data {
       my ($sortkey) = @_;
       return if (! @StatsArray);
     #      #
     # Print out plot request      # Sort the data
     my $title = 'Percent Wrong';      my $sortby = undef;
     if ($field eq 'DoDiff') {      foreach my $field (@Fields) {
         $title = 'Degree of Difficulty';          if ($sortkey eq $field->{'name'}) {
     }              $sortby = $field->{'name'};
     my $yaxis = 'Percent';          }
     if ($field eq 'DoDiff') {      }
         $yaxis = '';      if (! defined($sortby) || $sortby eq '' || $sortby eq 'problem_num') {
     } elsif ($field ne '%Wrng') {          $sortby = 'container';
         $yaxis = '';      }
     }      if ($sortby ne 'container') {
     #          # $sortby is already defined, so we can charge ahead
     # Determine appropriate value for $Max          if ($sortby =~ /^(title|part)$/i) {
     if ($field eq 'DoDiff') {              # Alpha comparison
         if ($Max > 0.5) {              @StatsArray = sort {
             $Max = 1;                  lc($a->{$sortby}) cmp lc($b->{$sortby}) ||
         } elsif ($Max > 0.2) {                  lc($a->{'title'}) cmp lc($b->{'title'}) ||
             $Max = 0.5;                  lc($a->{'part'}) cmp lc($b->{'part'});
         } elsif ($Max > 0.1) {              } @StatsArray;
             $Max = 0.2;  
         }  
     } elsif ($field eq '%Wrng') {  
         if ($Max > 50) {  
             $Max = 100;  
         } elsif ($Max > 25) {  
             $Max = 50;  
         } elsif ($Max > 20) {  
             $Max = 25;  
         } elsif ($Max > 10) {  
             $Max = 20;  
         } elsif ($Max > 5) {  
             $Max = 10;  
         } else {          } else {
             $Max = 5;              # Numerical comparison
               @StatsArray = sort {
                   my $retvalue = 0;
                   if ($b->{$sortby} eq 'nan') {
                       if ($a->{$sortby} ne 'nan') {
                           $retvalue = -1;
                       } else {
                           $retvalue = 0;
                       }
                   }
                   if ($a->{$sortby} eq 'nan') {
                       if ($b->{$sortby} ne 'nan') {
                           $retvalue = 1;
                       }
                   }
                   if ($retvalue eq '0') {
                       $retvalue = $b->{$sortby} <=> $a->{$sortby}     ||
                               lc($a->{'title'}) <=> lc($b->{'title'}) ||
                               lc($a->{'part'})  <=> lc($b->{'part'});
                   }
                   $retvalue;
               } @StatsArray;
         }          }
     }      }
           #
     $r->print("<p>".&DrawGraph(\@Data,$title,'Problem Number',$yaxis,      # Renumber the data set
                                $Max)."</p>\n");      my $count;
     #      foreach my $data (@StatsArray) {
     # Print out the data          $data->{'problem_num'} = ++$count;
     $ENV{'form.sortby'} = 'Contents';      }
     &output_html_ungrouped($r,'show probnum');  
     return;      return;
 }  }
   
 ###############################################  ########################################################
 ###############################################  ########################################################
   
   =pod
   
   =item &get_statistics()
   
   Wrapper routine from the call to loncoursedata::get_problem_statistics.  
   Calls lonstathelpers::get_time_limits() to limit the data set by time
   and &compute_discrimination_factor
   
   Inputs: $sequence, $resource, $part, $problem_num
   
   Returns: Hash reference with statistics data from 
   loncoursedata::get_problem_statistics.
   
   =cut
   
   ########################################################
   ########################################################
   sub get_statistics {
       my ($sequence,$resource,$part,$problem_num) = @_;
       #
       my ($starttime,$endtime) = &Apache::lonstathelpers::get_time_limits();
       my $symb = $resource->{'symb'};
       my $courseid = $ENV{'request.course.id'};
       #
       my $data = &Apache::loncoursedata::get_problem_statistics
                           (\@Apache::lonstatistics::SelectedSections,
                            $Apache::lonstatistics::enrollment_status,
                            $symb,$part,$courseid,$starttime,$endtime);
       $data->{'symb'}        = $symb;
       $data->{'part'}        = $part;
       $data->{'problem_num'} = $problem_num;
       $data->{'container'}   = $sequence->{'title'};
       $data->{'title'}       = $resource->{'title'};
       $data->{'title.link'}  = $resource->{'src'}.'?symb='.
           &Apache::lonnet::escape($resource->{'symb'});
       #
       if ($SelectedFields{'deg_of_disc'}) {
           $data->{'deg_of_disc'} = 
               &compute_discrimination_factor($resource,$part,$sequence);
       }
       #
       # Store in metadata if computations were done for all students
       if ($data->{'num_students'} > 1) {
           my @Sections = @Apache::lonstatistics::SelectedSections;
           my $sections = '"'.join(' ',@Sections).'"';
           $sections =~ s/&+/_/g;  # Ensure no special characters
           $data->{'sections'}=$sections;
           $data->{'course'} = $ENV{'request.course.id'};
           my $urlres=(&Apache::lonnet::decode_symb($resource->{'symb'}))[2];
           $data->{'urlres'}=$urlres;
           my %storestats = 
               &LONCAPA::lonmetadata::dynamic_metadata_storage($data);
           my ($dom,$user) = $urlres=~/^(\w+)\/(\w+)/; 
           &Apache::lonnet::put('nohist_resevaldata',\%storestats,$dom,$user);
       }
       #
       # Get the due date for research purposes (commented out most of the time)
   #    $data->{'duedate'} = 
   #        &Apache::lonnet::EXT('resource.'.$part.'.duedate',$symb);
   #    $data->{'opendate'} = 
   #        &Apache::lonnet::EXT('resource.'.$part.'.opendate',$symb);
       return $data;
   }
   
 ###############################################  ###############################################
 ###############################################  ###############################################
 sub DrawGraph {  
     my ($values,$title,$xaxis,$yaxis,$Max)=@_;  =pod
     $title = '' if (! defined($title));      
     $xaxis = '' if (! defined($xaxis));  =item &compute_discrimination_factor()
     $yaxis = '' if (! defined($yaxis));  
     #  Inputs: $Resource, $Sequence
     my $sendValues = join(',', @$values);  
     my $sendCount = scalar(@$values);  Returns: integer between -1 and 1
     if ( $Max > 1 ) {  
  if ($Max % 10) {  =cut
             if ( int($Max) < $Max ) {  
      $Max++;  
  $Max = int($Max);  
     }  
  }  
     } else {   
         $Max = 1;   
     }  
     my @GData = ($title,$xaxis,$yaxis,$Max,$sendCount,$sendValues);  
     return '<IMG src="/cgi-bin/graph.png?'.  
         (join('&', @GData)).'" border="1" />';  
 }  
   
 ###############################################  ###############################################
 ###############################################  ###############################################
   sub compute_discrimination_factor {
       my ($resource,$part,$sequence) = @_;
       my @Resources;
       foreach my $res (@{$sequence->{'contents'}}) {
           next if ($res->{'symb'} eq $resource->{'symb'});
           push (@Resources,$res->{'symb'});
       }
       #
       # rank
       my ($starttime,$endtime) = &Apache::lonstathelpers::get_time_limits();
       my $ranking = 
           &Apache::loncoursedata::rank_students_by_scores_on_resources
           (\@Resources,
            \@Apache::lonstatistics::SelectedSections,
            $Apache::lonstatistics::enrollment_status,undef,
            $starttime,$endtime);
       #
       # compute their percent scores on the problems in the sequence,
       my $number_to_grab = int(scalar(@{$ranking})/4);
       my $num_students = scalar(@{$ranking});
       my @BottomSet = map { $_->[&Apache::loncoursedata::RNK_student()]; 
                         } @{$ranking}[0..$number_to_grab];
       my @TopSet    = 
           map { 
               $_->[&Apache::loncoursedata::RNK_student()]; 
             } @{$ranking}[($num_students-$number_to_grab)..($num_students-1)];
       my ($bottom_sum,$bottom_max) = 
           &Apache::loncoursedata::get_sum_of_scores($resource,$part,\@BottomSet,
                                                     undef,$starttime,$endtime);
       my ($top_sum,$top_max) = 
           &Apache::loncoursedata::get_sum_of_scores($resource,$part,\@TopSet,
                                                     undef,$starttime,$endtime);
       my $deg_of_disc;
       if ($top_max == 0 || $bottom_max==0) {
           $deg_of_disc = 'nan';
       } else {
           $deg_of_disc = ($top_sum/$top_max) - ($bottom_sum/$bottom_max);
       }
       #&Apache::lonnet::logthis('    '.$top_sum.'/'.$top_max.
       #                         ' - '.$bottom_sum.'/'.$bottom_max);
       return $deg_of_disc;
   }
   
 ###############################################  ###############################################
 ###############################################  ###############################################
 sub ProblemStatisticsLegend {  ##
     my $Ptr = '';  ## Compute KR-21
     $Ptr = '<table border="0">';  ##
     $Ptr .= '<tr><td>';  ## To compute KR-21, you need the following information:
     $Ptr .= '<b>#Stdnts</b></td>';  ##
     $Ptr .= '<td>Total number of students attempted the problem.';  ## K=the number of items in your test
     $Ptr .= '</td></tr><tr><td>';  ## M=the mean score on the test
     $Ptr .= '<b>Tries</b></td>';  ## s=the standard deviation of the scores on your test 
     $Ptr .= '<td>Total number of tries for solving the problem.';  ##
     $Ptr .= '</td></tr><tr><td>';  ## then:
     $Ptr .= '<b>Mod</b></td>';  ## 
     $Ptr .= '<td>Largest number of tries for solving the problem by a student.';  ## KR-21 rk= [K/(K-1)] * [1- (M*(K-M))/(K*s^2))]
     $Ptr .= '</td></tr><tr><td>';  ##
     $Ptr .= '<b>Mean</b></td>';  ###############################################
     $Ptr .= '<td>Average number of tries. [ Tries / #Stdnts ]';  ###############################################
     $Ptr .= '</td></tr><tr><td>';  sub compute_sequence_statistics {
     $Ptr .= '<b>#YES</b></td>';      my ($seq) = @_;
     $Ptr .= '<td>Number of students solved the problem correctly.';      my $symb = $seq->{'symb'};
     $Ptr .= '</td></tr><tr><td>';      my @Resources;
     $Ptr .= '<b>#yes</b></td>';      foreach my $res (@{$seq->{'contents'}}) {
     $Ptr .= '<td>Number of students solved the problem by override.';          next if ($res->{'type'} ne 'assessment');
     $Ptr .= '</td></tr><tr><td>';          push (@Resources,$res->{'symb'});
     $Ptr .= '<b>%Wrong</b></td>';      }
     $Ptr .= '<td>Percentage of students who tried to solve the problem ';      my ($starttime,$endtime) = &Apache::lonstathelpers::get_time_limits();
     $Ptr .= 'but is still incorrect. [ 100*((#Stdnts-(#YES+#yes))/#Stdnts) ]';      #
     $Ptr .= '</td></tr><tr><td>';      # First compute statistics based on student scores
     $Ptr .= '<b>DoDiff</b></td>';      my ($smin,$smax,$sMean,$sSTD,$scount,$sMAX) = 
     $Ptr .= '<td>Degree of Difficulty of the problem.  ';          &Apache::loncoursedata::score_stats
     $Ptr .= '[ 1 - ((#YES+#yes) / Tries) ]';                      (\@Apache::lonstatistics::SelectedSections,
     $Ptr .= '</td></tr><tr><td>';                       $Apache::lonstatistics::enrollment_status,
     $Ptr .= '<b>S.D.</b></td>';                       \@Resources,$starttime,$endtime,undef);
     $Ptr .= '<td>Standard Deviation of the tries.  ';      $SeqStat{$symb}->{'title'}  = $seq->{'title'};
     $Ptr .= '[ sqrt(sum((Xi - Mean)^2)) / (#Stdnts-1) ';      $SeqStat{$symb}->{'scoremax'}  = $smax;
     $Ptr .= 'where Xi denotes every student\'s tries ]';      $SeqStat{$symb}->{'scoremin'}  = $smin;
     $Ptr .= '</td></tr><tr><td>';      $SeqStat{$symb}->{'scoremean'} = $sMean;
     $Ptr .= '<b>Skew.</b></td>';      $SeqStat{$symb}->{'scorestd'}  = $sSTD;
     $Ptr .= '<td>Skewness of the students tries.';      $SeqStat{$symb}->{'scorecount'} = $scount;
     $Ptr .= '[(sqrt( sum((Xi - Mean)^3) / #Stdnts)) / (S.D.^3)]';      $SeqStat{$symb}->{'max_possible'} = $sMAX;
     $Ptr .= '</td></tr><tr><td>';      #
     $Ptr .= '<b>Dis.F.</b></td>';      # Compute statistics based on the number of correct problems
     $Ptr .= '<td>Discrimination Factor: A Standard for evaluating the ';      # 'correct' is taken to mean 
     $Ptr .= 'problem according to a Criterion<br>';      my ($cmin,$cmax,$cMean,$cSTD,$ccount)=
     $Ptr .= '<b>[Criterion to group students into %27 Upper Students - ';          &Apache::loncoursedata::count_stats
     $Ptr .= 'and %27 Lower Students]</b><br>';          (\@Apache::lonstatistics::SelectedSections,
     $Ptr .= '<b>1st Criterion</b> for Sorting the Students: ';           $Apache::lonstatistics::enrollment_status,
     $Ptr .= '<b>Sum of Partial Credit Awarded / Total Number of Tries</b><br>';           \@Resources,$starttime,$endtime,undef);
     $Ptr .= '<b>2nd Criterion</b> for Sorting the Students: ';      my $K = $seq->{'num_assess_parts'};
     $Ptr .= '<b>Total number of Correct Answers / Total Number of Tries</b>';      my $kr_21;
     $Ptr .= '</td></tr>';      if ($K > 1 && $cSTD > 0) {
     $Ptr .= '<tr><td><b>Disc.</b></td>';          $kr_21 =  ($K/($K-1)) * (1 - $cMean*($K-$cMean)/($K*$cSTD**2));
     $Ptr .= '<td>Number of Students had at least one discussion.';      } else {
     $Ptr .= '</td></tr></table>';          $kr_21 = 'nan';
     return $Ptr;      }
       $SeqStat{$symb}->{'countmax'} = $cmax;
       $SeqStat{$symb}->{'countmin'} = $cmin;
       $SeqStat{$symb}->{'countstd'} = $cSTD;
       $SeqStat{$symb}->{'countmean'} = $cMean;
       $SeqStat{$symb}->{'count'} = $ccount;
       $SeqStat{$symb}->{'items'} = $K;
       $SeqStat{$symb}->{'KR-21'}=$kr_21;
       return;
 }  }
   
 #---- END Problem Statistics Web Page ----------------------------------------  
   
   =pod 
   
   =item ProblemStatisticsLegend
   
   =over 4
   
   =item #Stdnts
   Total number of students attempted the problem.
   
   =item Tries
   Total number of tries for solving the problem.
   
   =item Max Tries
   Largest number of tries for solving the problem by a student.
   
   =item Mean
   Average number of tries. [ Tries / #Stdnts ]
   
   =item #YES
   Number of students solved the problem correctly.
   
   =item #yes
   Number of students solved the problem by override.
   
   =item %Wrong
   Percentage of students who tried to solve the problem 
   but is still incorrect. [ 100*((#Stdnts-(#YES+#yes))/#Stdnts) ]
   
   =item DoDiff
   Degree of Difficulty of the problem.  
   [ 1 - ((#YES+#yes) / Tries) ]
   
   =item S.D.
   Standard Deviation of the tries.  
   [ sqrt(sum((Xi - Mean)^2)) / (#Stdnts-1) 
   where Xi denotes every student\'s tries ]
   
   =item Skew.
   Skewness of the students tries.
   [(sqrt( sum((Xi - Mean)^3) / #Stdnts)) / (S.D.^3)]
   
   =item Dis.F.
   Discrimination Factor: A Standard for evaluating the 
   problem according to a Criterion<br>
   
   =item [Criterion to group students into %27 Upper Students - 
   and %27 Lower Students]
   1st Criterion for Sorting the Students: 
   Sum of Partial Credit Awarded / Total Number of Tries
   2nd Criterion for Sorting the Students: 
   Total number of Correct Answers / Total Number of Tries
   
   =item Disc.
   Number of Students had at least one discussion.
   
   =back
   
   =cut
   
   ############################################################
   ############################################################
   
 1;  1;
 __END__  __END__

Removed from v.1.45  
changed lines
  Added in v.1.85


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>