version 1.6, 2002/07/29 22:01:11
|
version 1.13, 2002/08/05 20:53:38
|
Line 31
|
Line 31
|
# 11/1,11/4,11/16,12/14,12/16,12/18,12/20,12/31 Behrouz Minaei |
# 11/1,11/4,11/16,12/14,12/16,12/18,12/20,12/31 Behrouz Minaei |
# YEAR=2002 |
# YEAR=2002 |
# 1/22,2/1,2/6,2/25,3/2,3/6,3/17,3/21,3/22,3/26,4/7,5/6 Behrouz Minaei |
# 1/22,2/1,2/6,2/25,3/2,3/6,3/17,3/21,3/22,3/26,4/7,5/6 Behrouz Minaei |
# 5/12,5/14,5/15,5/19,5/26,7/16,7/25,7/29 Behrouz Minaei |
# 5/12,5/14,5/15,5/19,5/26,7/16,7/25,7/29,8/5 Behrouz Minaei |
# |
# |
### |
### |
|
|
Line 56 sub BuildProblemStatisticsPage {
|
Line 56 sub BuildProblemStatisticsPage {
|
$Ptr .= '<table border="0"><tbody>'; |
$Ptr .= '<table border="0"><tbody>'; |
$Ptr .= '<tr><td align="right"><b>Select Map</b></td>'."\n"; |
$Ptr .= '<tr><td align="right"><b>Select Map</b></td>'."\n"; |
$Ptr .= '<td align="left">'; |
$Ptr .= '<td align="left">'; |
$Ptr .= &Apache::lonhtmlcommon::MapOptions(\%cache, 'ProblemStatistics'); |
$Ptr .= &Apache::lonhtmlcommon::MapOptions(\%cache, 'ProblemStatistics', |
|
'Statistics'); |
|
$Ptr .= '</td></tr>'."\n"; |
|
$Ptr .= '<tr><td align="right"><b>Sorting Type:</b></td>'."\n"; |
|
$Ptr .= '<td align="left">'."\n"; |
|
$Ptr .= &Apache::lonhtmlcommon::AscendOrderOptions( |
|
$cache{'ProblemStatisticsAscend'}, |
|
'ProblemStatistics', |
|
'Statistics'); |
$Ptr .= '</td></tr>'."\n"; |
$Ptr .= '</td></tr>'."\n"; |
$Ptr .= &AscendOrderOptions($cache{'Ascend'}); |
|
$Ptr .= &ProblemStatisticsButtons($cache{'DisplayFormat'}); |
$Ptr .= &ProblemStatisticsButtons($cache{'DisplayFormat'}); |
$Ptr .= '</table>'; |
$Ptr .= '</table>'; |
$Ptr .= &ProblemStatisticsLegend(); |
$Ptr .= &ProblemStatisticsLegend(); |
$r->print($Ptr); |
$r->print($Ptr); |
|
$r->rflush(); |
|
|
untie(%cache); |
untie(%cache); |
|
&Create_PrgWin($r); |
|
my $count=0; |
foreach (@$students) { |
foreach (@$students) { |
|
&Update_PrgWin(scalar(@$students),$count,$_,$r); |
my $courseData = |
my $courseData = |
&Apache::loncoursedata::DownloadCourseInformation($_, $courseID); |
&Apache::loncoursedata::DownloadCourseInformation($_, $courseID); |
last if ($c->aborted()); |
last if ($c->aborted()); |
Line 74 sub BuildProblemStatisticsPage {
|
Line 85 sub BuildProblemStatisticsPage {
|
$courseData, $_); |
$courseData, $_); |
untie(%cache); |
untie(%cache); |
} |
} |
|
$count++; |
} |
} |
|
&Close_PrgWin($r); |
if($c->aborted()) { return; } |
if($c->aborted()) { return; } |
|
|
unless(tie(%cache,'GDBM_File',$cacheDB,&GDBM_READER,0640)) { |
unless(tie(%cache,'GDBM_File',$cacheDB,&GDBM_READER,0640)) { |
return '<html><body>Unable to tie database.</body></html>'; |
return '<html><body>Unable to tie database.</body></html>'; |
} |
} |
my %discriminant=(); |
|
my @list=(); |
|
my %Discuss=&Apache::loncoursedata::LoadDiscussion($courseID); |
|
my $index=0; |
|
foreach (@$students) { |
|
$index++; |
|
#&Apache::lonstatistics::Update_PrgWin(++$index,$r); |
|
&ExtractStudentData(\%cache, $_, \@list,\%Discuss, $r, \%discriminant); |
|
} |
|
#&Apache::lonstatistics::Close_PrgWin($r); |
|
|
|
my ($upper, $lower) = &Discriminant(\%discriminant); |
|
my %Header = (0,"Homework Sets Order",1,"#Stdnts",2,"Tries",3,"Mod", |
my %Header = (0,"Homework Sets Order",1,"#Stdnts",2,"Tries",3,"Mod", |
4,"Mean",5,"#YES",6,"#yes",7,"%Wrng",8,"DoDiff", |
4,"Mean",5,"#YES",6,"#yes",7,"%Wrng",8,"DoDiff", |
9,"S.D.",10,"Skew.",11,"D.F.1st",12,"D.F.2nd", 13, "Disc."); |
9,"S.D.",10,"Skew.",11,"D.F.1st",12,"D.F.2nd", 13, "Disc."); |
my $color=&setbgcolor(0); |
my $color=&setbgcolor(0); |
my %GraphDat= &BuildStatisticsTable(\%cache, \%discriminant, \@list, |
|
\%Header, $students, $r, $color); |
my $state=$ENV{'form.ProblemStatisticsHeading'}; |
|
|
|
# my $state=&Apache::lonstatistics::CheckFormElement(\%cache, |
|
# 'ProblemStatisticsHeading', |
|
# 'ProblemStatisticsHeading', |
|
# 'Homework Sets Order'); |
|
$r->print("<br>state=".$state); |
|
|
|
my $TempCache; |
|
|
|
if ($state) { |
|
$TempCache=&CacheStatisticsTable($state,\%cache,\%Header, |
|
$r,$color); |
|
} else { |
|
my %discriminant=(); |
|
my @list=(); |
|
my %Discuss=&Apache::loncoursedata::LoadDiscussion($courseID); |
|
my $index=0; |
|
foreach (@$students) { |
|
$index++; |
|
#&Apache::lonstatistics::Update_PrgWin(++$index,$r); |
|
&ExtractStudentData(\%cache, $_, \@list,\%Discuss, $r, |
|
\%discriminant); |
|
} |
|
#&Apache::lonstatistics::Close_PrgWin($r); |
|
my ($upper, $lower) = &Discriminant(\%discriminant,$r); |
|
$TempCache= &BuildStatisticsTable(\%cache, $upper, $lower, |
|
\@list, \%Header, $students, |
|
$r, $color); |
|
} |
|
untie(%cache); |
|
|
|
foreach (keys %$TempCache) { |
|
last if ($c->aborted()); |
|
if(tie(%cache,'GDBM_File',$cacheDB,&GDBM_WRCREAT,0640)) { |
|
$cache{$_}=$TempCache->{$_}; |
|
|
|
untie(%cache); |
|
} |
|
} |
|
if($c->aborted()) { return; } |
untie(%cache); |
untie(%cache); |
} |
} |
|
|
Line 142 sub CloseTable {
|
Line 184 sub CloseTable {
|
} |
} |
|
|
|
|
|
# Create progress |
|
sub Create_PrgWin { |
|
my ($r)=@_; |
|
$r->print(<<ENDPOP); |
|
<script> |
|
popwin=open('','popwin','width=400,height=100'); |
|
popwin.document.writeln('<html><body bgcolor="#88DDFF">'+ |
|
'<title>LON-CAPA Statistics</title>'+ |
|
'<h4>Computation Progress</h4>'+ |
|
'<form name=popremain>'+ |
|
'<input type=text size=35 name=remaining value=Starting></form>'+ |
|
'</body></html>'); |
|
popwin.document.close(); |
|
</script> |
|
ENDPOP |
|
|
|
$r->rflush(); |
|
} |
|
|
|
# update progress |
|
sub Update_PrgWin { |
|
my ($totalStudents,$index,$name,$r)=@_; |
|
$r->print('<script>popwin.document.popremain.remaining.value="'. |
|
'Computing '.$index.'/'.$totalStudents.': '. |
|
$name.'";</script>'); |
|
$r->rflush(); |
|
} |
|
|
|
# close Progress Line |
|
sub Close_PrgWin { |
|
my ($r)=@_; |
|
$r->print('<script>popwin.close()</script>'); |
|
$r->rflush(); |
|
} |
|
|
# ------ Dump the Student's DB file and handling the data for statistics table |
# ------ Dump the Student's DB file and handling the data for statistics table |
sub ExtractStudentData { |
sub ExtractStudentData { |
Line 157 sub ExtractStudentData {
|
Line 233 sub ExtractStudentData {
|
my $TotFirst = 0; |
my $TotFirst = 0; |
my $TimeTot = 0; |
my $TimeTot = 0; |
my $Discussed=0; |
my $Discussed=0; |
|
my $discrim=''; |
my $tempSequenceOrder=100; |
my $tempSequenceOrder=100; |
|
|
#$Apache::lonxml::debug=1; |
#$Apache::lonxml::debug=1; |
Line 165 sub ExtractStudentData {
|
Line 242 sub ExtractStudentData {
|
|
|
foreach my $sequence (split(':', $cache->{'orderedSequences'})) { |
foreach my $sequence (split(':', $cache->{'orderedSequences'})) { |
my $tempProblemOrder=100; |
my $tempProblemOrder=100; |
$tempSequenceOrder++; |
if($cache->{'ProblemStatisticsMaps'} ne 'All Maps' && |
# if($cache->{'ProblemStatisticsMap'} ne 'All Maps' && |
$cache->{'ProblemStatisticsMaps'} ne $cache->{$sequence.':title'}) { |
# $cache->{'ProblemStatisticsMap'} ne $cache->{$sequence.':title'}) { |
|
# $r->print("<br>sequences=$cache->{'orderedSequences'}"); |
# $r->print("<br>sequences=$cache->{'orderedSequences'}"); |
# $r->print("<br>".$cache->{$sequence.':title'}); |
# $r->print("<br>".$cache->{$sequence.':title'}); |
# next; |
next; |
# } |
} |
|
$tempSequenceOrder++; |
|
|
my $Dis = ''; |
#$discrim .= '&'; |
foreach my $problemID (split(':', $cache->{$sequence.':problems'})) { |
foreach my $problemID (split(':', $cache->{$sequence.':problems'})) { |
# $r->print("<br>problems=$cache->{$sequence.':problems'}"); |
# $r->print("<br>problems=$cache->{$sequence.':problems'}"); |
my $problem = $cache->{$problemID.':problem'}; |
my $problem = $cache->{$problemID.':problem'}; |
Line 192 sub ExtractStudentData {
|
Line 269 sub ExtractStudentData {
|
#} |
#} |
|
|
my %partData=undef; |
my %partData=undef; |
|
$partData{'count'}=0; |
# Initialize part data, display skips correctly |
# Initialize part data, display skips correctly |
# Skip refers to when a student made no submissions on that |
# Skip refers to when a student made no submissions on that |
# part/problem. |
# part/problem. |
Line 199 sub ExtractStudentData {
|
Line 277 sub ExtractStudentData {
|
$problemID. |
$problemID. |
':parts'})) { |
':parts'})) { |
$tempProblemOrder++; |
$tempProblemOrder++; |
|
$partData{'count'}++; |
# $r->print("<br>parts=$cache->{$sequence.':'.$problemID.':parts'}"); |
# $r->print("<br>parts=$cache->{$sequence.':'.$problemID.':parts'}"); |
$partData{$part.':order'}=$tempProblemOrder; |
$partData{$part.':order'}=$tempProblemOrder; |
$partData{$part.':tries'}=0; |
$partData{$part.':tries'}=0; |
Line 225 sub ExtractStudentData {
|
Line 304 sub ExtractStudentData {
|
$Discussed=0; |
$Discussed=0; |
my $code='-'; |
my $code='-'; |
|
|
$awarded = $cache->{$name. |
$awarded = $cache->{"$name:$Version:$problem:resource.". |
"$Version:$problem:resource.". |
|
"$part.awarded"}; |
"$part.awarded"}; |
$partData{$part.':awarded'} = ($awarded) ? $awarded : 0; |
$partData{$part.':awarded'} = ($awarded) ? $awarded : 0; |
$totalAwarded += $awarded; |
$totalAwarded += $awarded; |
|
|
$tries = $cache->{$name.":$Version:$problem". |
$tries = $cache->{"$name:$Version:$problem". |
":resource.$part.tries"}; |
":resource.$part.tries"}; |
$partData{$part.':tries'} = ($tries) ? $tries : 0; |
$partData{$part.':tries'} = ($tries) ? $tries : 0; |
$partData{$part.':wrong'} = $partData{$part.':tries'}; |
$partData{$part.':wrong'} = $partData{$part.':tries'}; |
Line 258 sub ExtractStudentData {
|
Line 336 sub ExtractStudentData {
|
|
|
# Loop through all the parts for the current problem in the |
# Loop through all the parts for the current problem in the |
# correct order and prepare the output |
# correct order and prepare the output |
|
my $partCounter=0; |
foreach (split(/\:/,$cache->{$sequence.':'.$problemID. |
foreach (split(/\:/,$cache->{$sequence.':'.$problemID. |
':parts'})) { |
':parts'})) { |
#$r->print("<br>".$cache->{$sequence.':title'}); |
$partCounter++; |
|
|
my $Yes = 0; |
my $Yes = 0; |
if($partData{$_.':code'} eq 'C' || |
if($partData{$_.':code'} eq 'C' || |
$partData{$_.':code'} eq 'O') { |
$partData{$_.':code'} eq 'O') { |
Line 270 sub ExtractStudentData {
|
Line 348 sub ExtractStudentData {
|
my $pOrder=$partData{$_.':order'}; |
my $pOrder=$partData{$_.':order'}; |
my $ptr = $tempSequenceOrder.':'.$pOrder.':'.$problemID; |
my $ptr = $tempSequenceOrder.':'.$pOrder.':'.$problemID; |
|
|
if($_ > 1) { |
if($partData{'count'} > 1) { |
$ptr .= "*(part $_)"; |
$ptr .= "*(part $_)"; |
$Dis .= '&'; |
|
} |
} |
|
#if($partCounter > 1) { |
|
$discrim .= '&'; |
|
#} |
|
|
my ($pr_no,$dod)=split('&',$ptr); |
my ($pr_no,$dod)=split('&',$ptr); |
# my $DoDiff=$DoDiff->{$dod}; |
# my $DoDiff=$DoDiff->{$dod}; |
Line 293 sub ExtractStudentData {
|
Line 373 sub ExtractStudentData {
|
$Discussed=1; |
$Discussed=1; |
} |
} |
my $time = $cache->{"$name:$LatestVersion:$problem:timestamp"}; |
my $time = $cache->{"$name:$LatestVersion:$problem:timestamp"}; |
$Dis .= $tempSequenceOrder.'@'.$pOrder.'='.$DisF.'+'.$Yes; |
$discrim .= $tempSequenceOrder.'@'.$pOrder.'='.$DisF.'+'.$Yes; |
$ptr .= '&'.$partData{$_.':tries'}. |
$ptr .= '&'.$partData{$_.':tries'}. |
'&'.$partData{$_.':wrong'}. |
'&'.$partData{$_.':wrong'}. |
'&'.$partData{$_.':code'}; |
'&'.$partData{$_.':code'}; |
Line 323 sub ExtractStudentData {
|
Line 403 sub ExtractStudentData {
|
$tempProblemOrder++; |
$tempProblemOrder++; |
} |
} |
} |
} |
my $pstr; |
} |
if($totalTries) { |
my $pstr; |
my $DisFac = ($totalAwarded/$totalTries); |
if($totalTries) { |
my $DisFactor = sprintf( "%.4f", $DisFac ); |
my $DisFac = ($totalAwarded/$totalTries); |
my $TS = sprintf( "%.2f", $spent ); |
my $DisFactor = sprintf( "%.4f", $DisFac ); |
my $TS_yes = sprintf( "%.2f", $spent_yes ); |
my $TS = sprintf( "%.2f", $spent ); |
# $DiscFac{$DisFactor}=$Dis; |
my $TS_yes = sprintf( "%.2f", $spent_yes ); |
$pstr=$DisFactor.':'.$name.':'.$ProbTot.':'.$TotalOpend.':'. |
$pstr=$DisFactor.':'.$name.':'.$ProbTot.':'.$TotalOpend.':'. |
$totalTries.':'.$ProbSolved.':'.$TotFirst.':'. |
$totalTries.':'.$ProbSolved.':'.$TotFirst.':'. |
$TS_yes.':'.$TS.':'.$TotDiscuss; |
$TS_yes.':'.$TS.':'.$TotDiscuss; |
(%$discriminant)->{$pstr}=$Dis; |
(%$discriminant)->{$pstr}=$discrim; |
} |
|
} |
} |
} |
} |
|
|
|
|
=pod |
|
sub MySort { |
sub MySort { |
if ( $Pos > 0 ) { |
my $pos=shift; |
|
if ( $pos > 0 ) { |
if ($ENV{'form.order'} eq 'Descending') {$b <=> $a;} |
if ($ENV{'form.order'} eq 'Descending') {$b <=> $a;} |
else { $a <=> $b; } |
else { $a <=> $b; } |
} |
} |
else { |
else { |
if ($ENV{'form.order'} eq 'Descending') {$b cmp $a;} |
# if ($ENV{'form.order'} eq 'Descending') {$b cmp $a;} |
else { $a cmp $b; } |
# else { $a cmp $b; } |
|
$a cmp $b; |
} |
} |
} |
} |
=cut |
|
|
|
|
|
sub BuildStatisticsTable { |
|
my ($cache,$discriminantFactor,$list,$headings,$students,$r,$color)=@_; |
|
|
|
|
sub BuildStatisticsTable { |
|
my ($cache,$upper,$lower,$list,$headings,$students,$r,$color)=@_; |
my $NoElements = scalar @$list; |
my $NoElements = scalar @$list; |
my @List=sort(@$list); |
my @list=sort(@$list); |
|
|
#6666666 |
#6666666 |
# my $file="/home/httpd/perl/tmp/183d.txt"; |
# my $file="/home/httpd/perl/tmp/183d.txt"; |
Line 377 sub BuildStatisticsTable {
|
Line 457 sub BuildStatisticsTable {
|
my $dummy; |
my $dummy; |
my $p_val; |
my $p_val; |
my $ResId; |
my $ResId; |
my %GraphDat; |
my %TempCache; |
my $cIdx=0; |
my $cIdx=0; |
|
|
foreach my $sequence (split(':', $cache->{'orderedSequences'})) { |
foreach my $sequence (split(':', $cache->{'orderedSequences'})) { |
|
if($cache->{'ProblemStatisticsMaps'} ne 'All Maps' && |
&CreateProblemStatisticsTableHeading(1,$cache->{$sequence.':source'}, |
$cache->{'ProblemStatisticsMaps'} ne $cache->{$sequence.':title'}) { |
|
next; |
|
} |
|
&CreateProblemStatisticsTableHeading($cache->{'DisplayFormat'}, |
|
$cache->{$sequence.':source'}, |
$cache->{$sequence.':title'}, |
$cache->{$sequence.':title'}, |
$headings,$r); |
$headings,$r); |
|
|
my ($tar,$Tries,$Wrongs,$Code,$Disc)=split(/\&/, |
my ($tar,$Tries,$Wrongs,$Code,$Disc)=split(/\&/, |
$List[$cIdx]); |
$list[$cIdx]); |
|
|
my ($SqOrd,$PrOrd,$Prob)=split(/\:/,$tar); |
my ($SqOrd,$PrOrd,$Prob)=split(/\:/,$tar); |
$sequence+=100; |
$sequence+=100; |
while ($SqOrd==$sequence && $cIdx<$NoElements) { |
while ($SqOrd==$sequence && $cIdx<$NoElements) { |
Line 415 sub BuildStatisticsTable {
|
Line 497 sub BuildStatisticsTable {
|
elsif( $Code eq 'O' ) { $Override++; } |
elsif( $Code eq 'O' ) { $Override++; } |
elsif( $Code eq '-' ) { $StdNo--; } |
elsif( $Code eq '-' ) { $StdNo--; } |
($tar,$Tries,$Wrongs,$Code,$Disc)=split(/\&/, |
($tar,$Tries,$Wrongs,$Code,$Disc)=split(/\&/, |
$List[$cIdx]); |
$list[$cIdx]); |
($SqOrd,$PrOrd,$Prob)=split(/\:/,$tar); |
($SqOrd,$PrOrd,$Prob)=split(/\:/,$tar); |
} |
} |
|
|
Line 427 sub BuildStatisticsTable {
|
Line 509 sub BuildStatisticsTable {
|
$Temp = '<a href="'.$cache->{$ResId.':source'}. |
$Temp = '<a href="'.$cache->{$ResId.':source'}. |
'" target="_blank">'.$cache->{$ResId.':title'}.$Dummy.'</a>'; |
'" target="_blank">'.$cache->{$ResId.':title'}.$Dummy.'</a>'; |
|
|
my $res = &Apache::lonnet::declutter($cache->{'src_'.$ResId}); |
#$r->print('<br>rid='.$ResId); |
|
#$r->print('<br>src='.$cache->{$ResId.':source'}); |
|
#$r->print('<br>tit='.$cache->{$ResId.':title'}); |
|
|
|
my $res = &Apache::lonnet::declutter($cache->{$ResId.':source'}); |
my $urlres=$res; |
my $urlres=$res; |
|
|
$ResId=~/(\d+)\.(\d+)/; |
$ResId=~/(\d+)\.(\d+)/; |
Line 435 sub BuildStatisticsTable {
|
Line 521 sub BuildStatisticsTable {
|
$urlres=$Map; |
$urlres=$Map; |
####################### |
####################### |
|
|
# $res = '<a href="'.$cache->{'src_'.$ResId}.'">'.$res.'</a>'; |
# $res = '<a href="'.$cache->{$ResId.':source'}.'">'.$res.'</a>'; |
#$Map = '<a href="'.$Map.'">'.$res.'</a>'; |
#$Map = '<a href="'.$Map.'">'.$res.'</a>'; |
|
|
#------------------------ Compute the Average of Tries about one problem |
#------------------------ Compute the Average of Tries about one problem |
Line 481 sub BuildStatisticsTable {
|
Line 567 sub BuildStatisticsTable {
|
} |
} |
|
|
#--------------------- Compute the Discrimination Factors |
#--------------------- Compute the Discrimination Factors |
my ($Up1,$Up2)=split(/\:/,':');#jason$DisUp->{$lpr[$i]}); |
my ($Up1,$Up2)=split(/\:/,$upper->{$sequence.'@'.$pOrd}); |
my ($Lw1,$Lw2)=split(/\:/,':');#jason$DisLow->{$lpr[$i]}); |
my ($Lw1,$Lw2)=split(/\:/,$lower->{$sequence.'@'.$pOrd}); |
|
|
my $Dis1 = $Up1 - $Lw1; |
my $Dis1 = $Up1 - $Lw1; |
my $Dis2 = $Up2 - $Lw2; |
my $Dis2 = $Up2 - $Lw2; |
my $_D1 = sprintf("%.2f", $Dis1); |
my $_D1 = sprintf("%.2f", $Dis1); |
Line 494 sub BuildStatisticsTable {
|
Line 581 sub BuildStatisticsTable {
|
my $SD = sprintf( "%.1f", $StdDev ); |
my $SD = sprintf( "%.1f", $StdDev ); |
my $DoD = sprintf( "%.2f", $DoDiff ); |
my $DoD = sprintf( "%.2f", $DoDiff ); |
my $Sk = sprintf( "%.1f", $Skewness ); |
my $Sk = sprintf( "%.1f", $Skewness ); |
my $join = $Prob.'&'.$Temp.'&'.$StdNo.'&'. |
my $join = $sequence.'@'.$pOrd.'&'.$Temp.'&'.$StdNo.'&'. |
$TotalTries.'&'.$MxTries.'&'.$Avg.'&'. |
$TotalTries.'&'.$MxTries.'&'.$Avg.'&'. |
$YES.'&'.$Override.'&'.$Wrng.'&'.$DoD.'&'. |
$YES.'&'.$Override.'&'.$Wrng.'&'.$DoD.'&'. |
$SD.'&'.$Sk.'&'.$_D1.'&'.$_D2.'&'. |
$SD.'&'.$Sk.'&'.$_D1.'&'.$_D2.'&'. |
$DiscNo.'&'.$Prob; |
$DiscNo.'&'.$Prob; |
##8888 $CachData{($p_count-1)}=$join; |
|
|
#####{$sequence.'@'.$pOrd} |
|
$TempCache{'CacheTable:'.($p_count-1)}=$join; |
|
|
#6666666 |
#6666666 |
# $r->print('<br>'.$out.'&'.$DoD); |
# $r->print('<br>'.$out.'&'.$DoD); |
Line 511 sub BuildStatisticsTable {
|
Line 600 sub BuildStatisticsTable {
|
&Apache::lonnet::put('resevaldata',\%storestats,$1,$2); |
&Apache::lonnet::put('resevaldata',\%storestats,$1,$2); |
} |
} |
#-------------------------------- Row of statistical table |
#-------------------------------- Row of statistical table |
&TableRow($cache,$join,$cIdx,($p_count-1),$r,$color,\%GraphDat); |
&TableRow($cache,$join,$cIdx,($p_count-1),$r,$color, |
|
\%TempCache); |
} |
} |
|
$TempCache{'ProblemCount'}=$p_count; |
&CloseTable($cache,$r); |
&CloseTable($cache,$r); |
} |
} |
### &Close_PrgWin(); |
### &Close_PrgWin(); |
#666666 |
#666666 |
# close( OUT ); |
# close( OUT ); |
#666666 |
#666666 |
|
return \%TempCache; |
} |
} |
|
|
=pod |
|
sub Cache_Statistics { |
sub CacheStatisticsTable { |
my ($cache,$color)=@_; |
my ($state,$cache,$Header,$r,$color)=@_; |
my @list = (); |
my @list = (); |
my $Useful; |
my $Useful; |
my $UnUseful; |
my $UnUseful; |
# $r->print('<input type="hidden" name="show" value="excel" />'."\n"); |
my %TempCache; |
my %myHeader = reverse( %Header ); |
my %myHeader = reverse( %$Header ); |
$Pos = $myHeader{$ENV{'form.sort'}}; |
my $pos = $myHeader{$state}; |
if ($Pos > 0) {$Pos++;} |
if ($pos > 0) {$pos++;} |
my $p_count = 0; |
my $p_count = $cache->{'ProblemCount'}; |
foreach my $key( keys %CachData) { |
|
my @Temp=split(/\&/,$CachData{$key}); |
for ( my $k=0; $k<$p_count;$k++) { |
if ( $Pos == 0 ) { |
my $key=$cache->{'CacheTable:'.$k}; |
($UnUseful,$Useful)=split(/\>/,$Temp[$Pos]); |
my @Temp=split(/\&/,$key); |
|
if ( $pos == 0 ) { |
|
($UnUseful,$Useful)=split(/\>/,$Temp[$pos]); |
} |
} |
else { |
else { |
$Useful = $Temp[$Pos]; |
$Useful = $Temp[$pos]; |
} |
} |
$list[$p_count]=$Useful.'@'.$CachData{$key}; |
$list[$k]=$Useful.'@'.$key; |
$p_count++; |
$r->print('<br>'.$list[$k]); |
} |
} |
|
|
|
|
@list = sort MySort (@list); |
@list = sort MySort (@list); |
|
|
my $nIndex=0; |
my $nIndex=0; |
|
|
|
return \%TempCache; |
|
} |
|
|
|
|
|
=pod |
|
|
if ( $Pos == 0 ) { |
if ( $Pos == 0 ) { |
foreach (sort keys %mapsort) { |
foreach my $sequence (split(':', $cache->{'orderedSequences'})) { |
my ($Hid,$pr)=split(/\:/,$mapsort{$_}); |
if($cache->{'ProblemStatisticsMaps'} ne 'All Maps' && |
&CreateProblemStatisticsTableHeading($cache,1,$Hid); |
$cache->{'ProblemStatisticsMaps'} ne $cache->{$sequence.':title'}) { |
|
next; |
|
} |
|
&CreateProblemStatisticsTableHeading($cache->{'DisplayFormat'}, |
|
$cache->{$sequence.':source'}, |
|
$cache->{$sequence.':title'}, |
|
$headings,$r); |
|
|
|
my ($tar,$Tries,$Wrongs,$Code,$Disc)=split(/\&/, |
|
$list[$cIdx]); |
|
my ($SqOrd,$PrOrd,$Prob)=split(/\:/,$tar); |
|
$sequence+=100; |
|
while ($SqOrd==$sequence && $cIdx<$NoElements) { |
|
my %storestats=(); |
my @lpr=split(/\&/,$pr); |
my @lpr=split(/\&/,$pr); |
for (my $i=1; $i<=$#lpr; $i++) { |
for (my $i=1; $i<=$#lpr; $i++) { |
my($Pre, $Post) = split(/\@/,$list[$nIndex]); |
my($Pre, $Post) = split(/\@/,$list[$nIndex]); |
Line 563 sub Cache_Statistics {
|
Line 677 sub Cache_Statistics {
|
} |
} |
} |
} |
else { |
else { |
&CreateProblemStatisticsTableHeading($cache,0); |
&CreateProblemStatisticsTableHeading($cache->{'DisplayFormat'}, |
|
$cache->{$sequence.':source'}, |
|
$cache->{$sequence.':title'}, |
|
$headings,$r); |
for ( my $nIndex = 0; $nIndex < $p_count; $nIndex++ ) { |
for ( my $nIndex = 0; $nIndex < $p_count; $nIndex++ ) { |
my($Pre, $Post) = split(/\@/,$list[$nIndex]); |
my($Pre, $Post) = split(/\@/,$list[$nIndex]); |
&TableRow($cache,$Post,$nIndex,$nIndex,$color,\%GraphDat); |
&TableRow($cache,$Post,$nIndex,$nIndex,$color,\%GraphDat); |
} |
} |
&CloseTable($cache); |
&CloseTable($cache); |
} |
} |
|
|
|
return \%TempCache; |
} |
} |
=cut |
|
|
=cut |
|
|
|
|
sub TableRow { |
sub TableRow { |
my ($cache,$Str,$Idx,$RealIdx,$r,$color,$GraphDat)=@_; |
my ($cache,$Str,$Idx,$RealIdx,$r,$color,$GraphDat)=@_; |
my($PrOrd,$Temp,$StdNo,$TotalTries,$MxTries,$Avg,$YES,$Override, |
my($PrOrd,$Temp,$StdNo,$TotalTries,$MxTries,$Avg,$YES,$Override, |
$Wrng,$DoD,$SD,$Sk,$_D1,$_D2,$DiscNo,$Prob)=split(/\&/,$Str); |
$Wrng,$DoD,$SD,$Sk,$_D1,$_D2,$DiscNo,$Prob)=split(/\&/,$Str); |
# $r->print('<br>'.$Str); |
my $Ptr; |
if ($ENV{'form.showcsv'}) { |
if($cache->{'DisplayFormat'} eq 'Display CSV Format') { |
my ($ResId,$Dummy)=split(/\*/,$Prob); |
my ($ResId,$Dummy)=split(/\*/,$Prob); |
my $Ptr = "\n".'<br>'. |
$Ptr="\n".'<br>'. |
"\n".'"'.($RealIdx+1).'",'. |
"\n".'"'.($RealIdx+1).'",'. |
"\n".'"'.$cache->{'title_'.$ResId}.$Dummy.'",'. |
"\n".'"'.$cache->{$ResId.':title'}.$Dummy.'",'. |
"\n".'"'.$cache->{'src_'.$ResId}.'",'. |
"\n".'"'.$cache->{$ResId.':source'}.'",'. |
"\n".'"'.$StdNo.'",'. |
"\n".'"'.$StdNo.'",'. |
"\n".'"'.$TotalTries.'",'. |
"\n".'"'.$TotalTries.'",'. |
"\n".'"'.$MxTries.'",'. |
"\n".'"'.$MxTries.'",'. |
"\n".'"'.$Avg.'",'. |
"\n".'"'.$Avg.'",'. |
"\n".'"'.$YES.'",'. |
"\n".'"'.$YES.'",'. |
"\n".'"'.$Override.'",'. |
"\n".'"'.$Override.'",'. |
"\n".'"'.$Wrng.'",'. |
"\n".'"'.$Wrng.'",'. |
"\n".'"'.$DoD.'",'. |
"\n".'"'.$DoD.'",'. |
"\n".'"'.$SD.'",'. |
"\n".'"'.$SD.'",'. |
"\n".'"'.$Sk.'",'. |
"\n".'"'.$Sk.'",'. |
"\n".'"'.$_D1.'",'. |
"\n".'"'.$_D1.'",'. |
"\n".'"'.$_D2.'"'. |
"\n".'"'.$_D2.'"'. |
"\n".'"'.$DiscNo.'"'; |
"\n".'"'.$DiscNo.'"'; |
|
|
$r->print("\n".$Ptr); |
$r->print("\n".$Ptr); |
} |
} else { |
else{ |
$Ptr="\n".'<tr>'. |
my $Ptr = "\n".'<tr>'. |
"\n".'<td>'.($RealIdx+1).'</td>'. |
"\n".'<td>'.($RealIdx+1).'</td>'. |
# "\n".'<td>'.$PrOrd.$Temp.'</td>'. |
# "\n".'<td>'.$PrOrd.$Temp.'</td>'. |
"\n".'<td>'.$Temp.'</td>'. |
"\n".'<td>'.$Temp.'</td>'. |
"\n".'<td bgcolor='.$color->{"yellow"}.'> '.$StdNo.'</td>'. |
"\n".'<td bgcolor='.$color->{"yellow"}.'> '.$StdNo.'</td>'. |
"\n".'<td bgcolor='.$color->{"yellow"}.'>'.$TotalTries.'</td>'. |
"\n".'<td bgcolor='.$color->{"yellow"}.'>'.$TotalTries.'</td>'. |
"\n".'<td bgcolor='.$color->{"yellow"}.'>'.$MxTries.'</td>'. |
"\n".'<td bgcolor='.$color->{"yellow"}.'>'.$MxTries.'</td>'. |
"\n".'<td bgcolor='.$color->{"gb"}.'>'.$Avg.'</td>'. |
"\n".'<td bgcolor='.$color->{"gb"}.'>'.$Avg.'</td>'. |
"\n".'<td bgcolor='.$color->{"gb"}.'> '.$YES.'</td>'. |
"\n".'<td bgcolor='.$color->{"gb"}.'> '.$YES.'</td>'. |
"\n".'<td bgcolor='.$color->{"gb"}.'> '.$Override.'</td>'. |
"\n".'<td bgcolor='.$color->{"gb"}.'> '.$Override.'</td>'. |
"\n".'<td bgcolor='.$color->{"red"}.'> '.$Wrng.'</td>'. |
"\n".'<td bgcolor='.$color->{"red"}.'> '.$Wrng.'</td>'. |
"\n".'<td bgcolor='.$color->{"red"}.'> '.$DoD.'</td>'. |
"\n".'<td bgcolor='.$color->{"red"}.'> '.$DoD.'</td>'. |
"\n".'<td bgcolor='.$color->{"green"}.'> '.$SD.'</td>'. |
"\n".'<td bgcolor='.$color->{"green"}.'> '.$SD.'</td>'. |
"\n".'<td bgcolor='.$color->{"green"}.'> '.$Sk.'</td>'. |
"\n".'<td bgcolor='.$color->{"green"}.'> '.$Sk.'</td>'. |
"\n".'<td bgcolor='.$color->{"purple"}.'> '.$_D1.'</td>'. |
"\n".'<td bgcolor='.$color->{"purple"}.'> '.$_D1.'</td>'. |
"\n".'<td bgcolor='.$color->{"purple"}.'> '.$_D2.'</td>'. |
"\n".'<td bgcolor='.$color->{"purple"}.'> '.$_D2.'</td>'. |
"\n".'<td bgcolor='.$color->{"yellow"}.'> '.$DiscNo.'</td>'; |
"\n".'<td bgcolor='.$color->{"yellow"}.'> '.$DiscNo.'</td>'; |
|
$r->print("\n".$Ptr.'</tr>' ); |
$r->print("\n".$Ptr.'</tr>' ); |
} |
} |
# $GraphDat->{$RealIdx}=$DoD.':'.$Wrng; |
$GraphDat->{'graph_gif:'.$RealIdx}=$DoD.':'.$Wrng; |
} |
} |
|
|
|
|
Line 645 sub setbgcolor {
|
Line 765 sub setbgcolor {
|
return \%color; |
return \%color; |
} |
} |
|
|
|
|
sub StatusOptions { |
|
my ($cache)=@_; |
|
|
|
my $Status = $cache->{'Status'}; |
|
my $OpSel1 = ''; |
|
my $OpSel2 = ''; |
|
my $OpSel3 = ''; |
|
|
|
if($Status eq 'Any') { $OpSel3 = ' selected'; } |
|
elsif($Status eq 'Expired' ) { $OpSel2 = ' selected'; } |
|
else { $OpSel1 = ' selected'; } |
|
|
|
my $Ptr = ''; |
|
$Ptr .= '<tr><td align="right"><b>Student Status:</b></td>'."\n"; |
|
$Ptr .= '<td align="left"><select name="Status">'; |
|
$Ptr .= '<option'.$OpSel1.'>Active</option>'."\n"; |
|
$Ptr .= '<option'.$OpSel2.'>Expired</option>'."\n"; |
|
$Ptr .= '<option'.$OpSel3.'>Any</option>'."\n"; |
|
$Ptr .= '</select></td></tr>'."\n"; |
|
|
|
return $Ptr; |
|
} |
|
|
|
sub AscendOrderOptions { |
|
my ($order)=@_; |
|
|
|
my $OpSel1 = ''; |
|
my $OpSel2 = ''; |
|
|
|
if($order eq 'Ascending') { |
|
$OpSel1 = ' selected'; |
|
} else { |
|
$OpSel2 = ' selected'; |
|
} |
|
|
|
my $Ptr = ''; |
|
$Ptr .= '<tr><td align="right"><b>Sorting Type:</b></td>'."\n"; |
|
$Ptr .= '<td align="left"><select name="Ascend">'."\n"; |
|
$Ptr .= '<option'.$OpSel1.'>Ascending</option>'."\n". |
|
'<option'.$OpSel2.'>Descending</option>'."\n"; |
|
$Ptr .= '</select></td></tr>'."\n"; |
|
|
|
return $Ptr; |
|
} |
|
|
|
sub ProblemStatisticsButtons { |
sub ProblemStatisticsButtons { |
my ($displayFormat)=@_; |
my ($displayFormat)=@_; |
|
|
my $Ptr = '<tr><td></td><td align="left">'; |
my $Ptr = '<tr><td></td><td align="left">'; |
$Ptr .= '<input type=submit name="ProblemStatisticsRecalculate" '; |
|
$Ptr .= 'value="Recalculate Statistics"/>'."\n"; |
|
$Ptr .= ' '; |
|
$Ptr .= '<input type="submit" name="DoDiffGraph" '; |
$Ptr .= '<input type="submit" name="DoDiffGraph" '; |
$Ptr .= 'value="DoDiff Graph" />'."\n"; |
$Ptr .= 'value="DoDiff Graph" />'."\n"; |
$Ptr .= ' '; |
$Ptr .= ' '; |
Line 706 sub ProblemStatisticsButtons {
|
Line 777 sub ProblemStatisticsButtons {
|
$Ptr .= ' '; |
$Ptr .= ' '; |
$Ptr .= '<input type="submit" name="DisplayCSVFormat" '; |
$Ptr .= '<input type="submit" name="DisplayCSVFormat" '; |
if($displayFormat eq 'Display CSV Format') { |
if($displayFormat eq 'Display CSV Format') { |
$Ptr .= 'value="Display CSV Format" />'."\n"; |
|
} else { |
|
$Ptr .= 'value="Display Table Format" />'."\n"; |
$Ptr .= 'value="Display Table Format" />'."\n"; |
|
} else { |
|
$Ptr .= 'value="Display CSV Format" />'."\n"; |
} |
} |
$Ptr .= '</td></tr>'; |
$Ptr .= '</td></tr>'; |
|
|
Line 773 sub ProblemStatisticsLegend {
|
Line 844 sub ProblemStatisticsLegend {
|
|
|
#------- Processing upperlist and lowerlist according to each problem |
#------- Processing upperlist and lowerlist according to each problem |
sub ProcessDiscriminant { |
sub ProcessDiscriminant { |
my ($List) = @_; |
my ($List,$r) = @_; |
my @sortedList = sort (@$List); |
my @sortedList = sort (@$List); |
my $Count = scalar @sortedList; |
my $Count = scalar @sortedList; |
my $Problem; |
my $Problem; |
Line 786 sub ProcessDiscriminant {
|
Line 857 sub ProcessDiscriminant {
|
my $nStudent=0; |
my $nStudent=0; |
my %Proc=undef; |
my %Proc=undef; |
while ($nIndex<$Count) { |
while ($nIndex<$Count) { |
|
# $r->print("<br> $nIndex) $sortedList[$nIndex]"); |
($Problem,$tmp)=split(/\=/,$sortedList[$nIndex]); |
($Problem,$tmp)=split(/\=/,$sortedList[$nIndex]); |
@Dis=split(/\+/,$tmp); |
@Dis=split(/\+/,$tmp); |
my $Temp = $Problem; |
my $Temp = $Problem; |
Line 797 sub ProcessDiscriminant {
|
Line 869 sub ProcessDiscriminant {
|
($Problem,$tmp)=split(/\=/,$sortedList[$nIndex]); |
($Problem,$tmp)=split(/\=/,$sortedList[$nIndex]); |
@Dis=split(/\+/,$tmp); |
@Dis=split(/\+/,$tmp); |
} while ( $Problem eq $Temp && $nIndex < $Count ); |
} while ( $Problem eq $Temp && $nIndex < $Count ); |
# $Proc{$Temp}=($Sum1/$nStudent).':'.$nStudent; |
|
$Proc{$Temp}=($Sum1/$nStudent).':'.($Sum2/$nStudent); |
$Proc{$Temp}=($Sum1/$nStudent).':'.($Sum2/$nStudent); |
# $r->print("$nIndex) $Temp --> ($nStudent) $Proc{$Temp} <br>"); |
# $r->print("<br> $nIndex) $Temp --> ($nStudent) $Proc{$Temp}"); |
$Sum1=0; |
$Sum1=0; |
$Sum2=0; |
$Sum2=0; |
$nStudent=0; |
$nStudent=0; |
Line 810 sub ProcessDiscriminant {
|
Line 881 sub ProcessDiscriminant {
|
|
|
#------- Creating Discimination factor |
#------- Creating Discimination factor |
sub Discriminant { |
sub Discriminant { |
my ($discriminantFactor)=@_; |
my ($discriminant,$r)=@_; |
my @discriminantKeys=keys(%$discriminantFactor); |
#$Apache::lonxml::debug=1; |
|
#&Apache::lonhomework::showhash(%$discriminant); |
|
#$Apache::lonxml::debug=0; |
|
my @discriminantKeys=keys(%$discriminant); |
my $Count = scalar @discriminantKeys; |
my $Count = scalar @discriminantKeys; |
|
|
my $UpCnt = int(0.27*$Count); |
my $UpCnt = int(0.27*$Count); |
Line 825 sub Discriminant {
|
Line 899 sub Discriminant {
|
$Count++; |
$Count++; |
if($low < $UpCnt || $Count > $up) { |
if($low < $UpCnt || $Count > $up) { |
$low++; |
$low++; |
my $str=$discriminantFactor->{$key}; |
my $str=$discriminant->{$key}; |
foreach(split(/\:/,$str)){ |
foreach(split(/\&/,$str)){ |
if($_) { |
if($_) { |
if($low<$UpCnt) { push(@LowList,$_); } |
if($low<$UpCnt) { push(@LowList,$_); } |
else { push(@UpList,$_); } |
else { push(@UpList,$_); } |
Line 834 sub Discriminant {
|
Line 908 sub Discriminant {
|
} |
} |
} |
} |
} |
} |
my %DisUp = &ProcessDiscriminant(\@UpList); |
my %DisUp = &ProcessDiscriminant(\@UpList,$r); |
my %DisLow = &ProcessDiscriminant(\@LowList); |
my %DisLow = &ProcessDiscriminant(\@LowList,$r); |
|
|
return (\%DisUp, \%DisLow); |
return (\%DisUp, \%DisLow); |
} |
} |
|
|
|
|
|
|
#---- END Problem Statistics Web Page ---------------------------------------- |
#---- END Problem Statistics Web Page ---------------------------------------- |
|
|
Line 852 sub BuildDiffGraph {
|
Line 924 sub BuildDiffGraph {
|
my ($r)=@_; |
my ($r)=@_; |
|
|
my $graphData = &GetGraphData('DiffGraph', $r); |
my $graphData = &GetGraphData('DiffGraph', $r); |
return '<IMG src="/cgi-bin/graph.gif?'.$graphData.'" />'; |
$r->print('<IMG src="/cgi-bin/graph.gif?'.$graphData.'" />'); |
|
|
|
return; |
} |
} |
|
|
sub BuildWrongGraph { |
sub BuildWrongGraph { |
my ($r)=@_; |
my ($r)=@_; |
|
|
my $graphData = &GetGraphData('WrongGraph', $r); |
my $graphData = &GetGraphData('WrongGraph', $r); |
return '<IMG src="/cgi-bin/graph.gif?'.$graphData.'" />'; |
$r->print('<IMG src="/cgi-bin/graph.gif?'.$graphData.'" />'); |
|
|
|
return; |
} |
} |
|
|
|
|