ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ilTestStatistics Class Reference

This class calculates statistical data for a test which has to be calculated using all participant datasets (like the median). More...

+ Collaboration diagram for ilTestStatistics:

Public Member Functions

 __construct ($eval_data)
 ilTestStatistics constructor More...
 
 getStatistics ()
 Returns the statistics object. More...
 
 calculateStatistics ($eval_data)
 Instanciates the statistics object. More...
 

Data Fields

 $test_id
 
 $statistics
 

Detailed Description

This class calculates statistical data for a test which has to be calculated using all participant datasets (like the median).

Author
Helmut Schottmüller helmu.nosp@m.t.sc.nosp@m.hottm.nosp@m.uell.nosp@m.er@ma.nosp@m.c.co.nosp@m.m
Version
$Id$

Definition at line 16 of file class.ilTestStatistics.php.

Constructor & Destructor Documentation

◆ __construct()

ilTestStatistics::__construct (   $eval_data)

ilTestStatistics constructor

The constructor takes the id of an existing test object

Parameters
integer$eval_dataComplete test data as ilTestEvaluationData object public

Definition at line 29 of file class.ilTestStatistics.php.

References calculateStatistics().

30  {
31  $this->statistics = null;
32  $this->calculateStatistics($eval_data);
33  }
calculateStatistics($eval_data)
Instanciates the statistics object.
+ Here is the call graph for this function:

Member Function Documentation

◆ calculateStatistics()

ilTestStatistics::calculateStatistics (   $eval_data)

Instanciates the statistics object.

private

See also
$statistics

Definition at line 53 of file class.ilTestStatistics.php.

References array.

Referenced by __construct().

54  {
55  $median_array = array();
56 
57  foreach ($eval_data->getParticipantIds() as $active_id) {
58  $participant =&$eval_data->getParticipant($active_id);
59  array_push($median_array, $participant->getReached());
60  }
61 
62  $this->statistics = new ilStatistics();
63  $this->statistics->setData($median_array);
64  }
Create styles array
The data for the language used.
+ Here is the caller graph for this function:

◆ getStatistics()

ilTestStatistics::getStatistics ( )

Returns the statistics object.

Returns
object ilStatistics object public
See also
$statistics

Definition at line 42 of file class.ilTestStatistics.php.

References $statistics.

43  {
44  return $this->statistics;
45  }

Field Documentation

◆ $statistics

ilTestStatistics::$statistics

Definition at line 19 of file class.ilTestStatistics.php.

Referenced by getStatistics().

◆ $test_id

ilTestStatistics::$test_id

Definition at line 18 of file class.ilTestStatistics.php.


The documentation for this class was generated from the following file: