ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
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

 ilTestStatistics ($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.

Member Function Documentation

◆ calculateStatistics()

ilTestStatistics::calculateStatistics (   $eval_data)

Instanciates the statistics object.

@access private

See also
$statistics

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

54 {
55 $median_array = array();
56
57 foreach ($eval_data->getParticipantIds() as $active_id)
58 {
59 $participant =& $eval_data->getParticipant($active_id);
60 array_push($median_array, $participant->getReached());
61 }
62
63 $this->statistics = new ilStatistics();
64 $this->statistics->setData($median_array);
65 }

Referenced by ilTestStatistics().

+ Here is the caller graph for this function:

◆ getStatistics()

ilTestStatistics::getStatistics ( )

Returns the statistics object.

Returns
object ilStatistics object @access public
See also
$statistics

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

References $statistics.

◆ ilTestStatistics()

ilTestStatistics::ilTestStatistics (   $eval_data)

ilTestStatistics constructor

The constructor takes the id of an existing test object

Parameters
integer$eval_dataComplete test data as ilTestEvaluationData object @access public

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

30 {
31 $this->statistics = NULL;
32 $this->calculateStatistics($eval_data);
33 }
calculateStatistics($eval_data)
Instanciates the statistics object.

References calculateStatistics().

+ Here is the call graph for this function:

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: