From 8ea6ea6db019f68436a69f36aae55a9f205efa35 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Wed, 30 Jan 2013 15:43:52 +0100 Subject: doc: Nils Weber doesnt have an 'e' in his firstname --- .../Dateistruktur/results/statistic.php | 211 +++++++++++++++++++++ 1 file changed, 211 insertions(+) create mode 100755 doc/nils-diplom/Dateistruktur/results/statistic.php (limited to 'doc/nils-diplom/Dateistruktur/results/statistic.php') diff --git a/doc/nils-diplom/Dateistruktur/results/statistic.php b/doc/nils-diplom/Dateistruktur/results/statistic.php new file mode 100755 index 0000000..74e0fb8 --- /dev/null +++ b/doc/nils-diplom/Dateistruktur/results/statistic.php @@ -0,0 +1,211 @@ + + + +
STATISTIK
+ + +
+ + +
Überblick über die Lösungsversuche pro Aufgabe:
+ + + + + 0 ) + { + print "
\n"; + print "\n"; + while ( list( $key, $val ) = each( $results ) ) + { + print "\n"; + } + print "\n"; + + for ( $i = 0; $i < $nrows; $i++ ) { + $col=0; + reset($results); + print "\n"; + while ( $column = each($results) ) + { + $data = $column['value']; + + if ($col==1) + { + $percent = $data[$i] * 100/$max; //wieviel Prozent der aufgaben hat der Student gelöst + + $width = $percent * 400/100; // Darstellung per Balkendiagramm + + if ($percent <= 25) + print ""; + if ($percent > 25 and $percent < 50) + print ""; + if ($percent >= 50) + print ""; + } + + else + print "\n"; + $col++; + } + print "\n"; + } + print ""; + print "
$key
  $data[$i] Anfragen  $data[$i] Anfragen  $data[$i] Anfragen$data[$i]
Verteilung der Anzahl Anfragen nach Aufgaben.

"; + } + + +?> + +

+ + + +
 
+ + +
durchschnittlich zur Lösung benötigte Zeit in Tagen::
+ + +
 
+ + + + + 0 ) + { + print "
\n"; + print "\n"; + while ( list( $key, $val ) = each( $results ) ) + { + print "\n"; + } + print "\n"; + + for ( $i = 0; $i < $nrows; $i++ ) + { + $col=0; + reset($results); + print "\n"; + while ( $column = each($results) ) + { + $data = $column['value']; + + if ($col==1) + { + + $wert = (float)(ereg_replace(",", ".", $data[$i])); // umwandeln in float + $percent = $wert * 100/$tagmax; //wieviel Prozent der aufgaben hat der Student gelöst + + $width = $percent * 4; + + if ($percent >= 0 and $percent <= 25) + print ""; + if ($percent > 25 and $percent < 50) + print ""; + if ($percent >= 50) + print ""; + /*if ($percent == 0) + print ""; + if ($percent > 0 and $percent < 1) + print "";*/ + } + + else + print "\n"; // Name und vorname ausgeben.... + $col++; + } + print "\n"; + } + } +else + { + if (isset($_GET['ID'])) + { + $message = "Es sind noch keine Aufgaben gelöst worden...."; + } + + print ""; + } + +?> + + + + +
$key
  $wert Tage  $wert Tage  $wert Tage $wert Tage $wert Tage$data[$i]
" . $message . "
+ + + + + \ No newline at end of file -- cgit