60 $this->stat_data = array();
123 if (
count($this->stat_data)) {
124 $min =
min($this->stat_data);
140 if (
count($this->stat_data)) {
141 $max =
max($this->stat_data);
156 return count($this->stat_data);
169 if (
count($this->stat_data)) {
171 foreach ($this->stat_data as $value) {
172 $sum_n += pow((
float) $value, (
float) $n);
186 return $this->
sum_n(1);
198 return $this->
sum_n(2);
211 if (
count($this->stat_data)) {
212 if ($this->
min() === 0) {
216 foreach ($this->stat_data as $value) {
217 $prod_n *= pow((
float) $value, (
float) $n);
245 if ($sum ===
false) {
248 $count = $this->
count();
252 return (
float) ($sum / $count);
269 if (($prod ===
false) or ($prod === 0)) {
272 $count = $this->
count();
276 return pow((
float) $prod, (
float) (1 / $count));
289 if (($min ===
false) or ($min === 0)) {
292 $count = $this->
count();
297 foreach ($this->stat_data as $value) {
300 return $count / $sum;
312 if (
count($this->stat_data)) {
314 $count = $this->
count();
315 if ((
count($this->stat_data) % 2) == 0) {
316 $median = ($this->stat_data[($count / 2) - 1] + $this->stat_data[($count / 2)]) / 2;
318 $median = $this->stat_data[(($count + 1) / 2) - 1];
332 if (!is_numeric($value)) {
335 $rank = array_search($value, $this->stat_data);
336 if ($rank !==
false) {
337 $rank = $this->
count() - $rank;
354 $count = $this->
count();
359 if (($count % 2) == 0) {
360 $rank_median = ($count + 1) / 2;
362 $rank_median = ($count + 1) / 2;
376 $count = $this->
count();
380 $nprod = ($n / 100) * $count;
381 if (intval($nprod) == $nprod) {
384 return $this->stat_data[$k];
385 } elseif ($k == $count) {
386 return $this->stat_data[$k - 1];
388 return ($this->stat_data[$k - 1] + $this->stat_data[$k]) / 2;
392 return $this->stat_data[$k - 1];
407 foreach ($this->stat_data as
$key => $value) {
408 if (!is_numeric($value)) {
409 switch ($this->nan_handling) {
411 unset($this->stat_data[
$key]);
414 $this->stat_data[
$key] = 0;
421 sort($this->stat_data);
rank($value)
Returns the rank of a given value.
sum()
Calculates the sum of x_1 + x_2 + ...
arithmetic_mean()
Arithmetic mean of the data values xbar = (1/n)*∑x_i.
quantile($n)
n-Quantile of the data values
__construct($nan_handling=NAN_HANDLING_REMOVE)
Constructor of ilStatistics class.
const NAN_HANDLING_REMOVE
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getData()
Returns the numeric value array containing the data.
max()
Calculates the maximum value.
validate()
Validates the numeric data and handles values which are not a number according to the $nan_handling v...
min()
Calculates the minimum value.
median()
Median of the data values.
harmonic_mean()
Harmonic mean of the data values harmonic_mean = n/(1/x_1 + 1/x_2 + ...
geometric_mean()
Geometric mean of the data values geometric_mean = (x_1 * x_2 * ...
sum2()
Calculates the sum of x_1^2 + x_2^2 + ...
product($n)
Calculates the product of x_1 * x_2 * ...
count()
Calculates number of data values.
getNANHandling()
Get the handling of elements which are not a number.
product_n($n)
Calculates the product of x_1^n * x_2^n * ...
rank_median()
Returns the rank of the median.
This class provides mathematical functions for statistics.
setNANHandling($nan_handling=NAN_HANDLING_REMOVE)
Set the handling of elements which are not a number.
sum_n($n)
Calculates the sum of x_1^n + x_2^n + ...
setData($stat_data)
Sets the data and checks for invalid values.