The statistics module.
This module contains miscellaneous stastistical functions for expyriment.
Returns the frequency table of the data as dictionary.
Parameters : | data : list
|
---|---|
Returns : | out : dict
|
Returns the mean of data.
Parameters : | data : list
|
---|---|
Returns : | out : float or None |
Notes
The function ignores all non-numerical elements in the data and returns None if no numerical element has been found. In contrast to standard math and numpy functions, this function is robust against type violations.
Returns the median of data.
Parameters : | data : list
|
---|---|
Returns : | out : float or None |
Notes
The function ignores all non-numerical elements in the data and returns None if no numerical element has been found. In contrast to standard math and numpy functions, this function is robust against type violations.
Returns the mode, that is, the most frequent value in data.
Parameters : | data : list
|
---|---|
Returns : | out : float or None |
Returns the sum of data.
The function ignores all non-numerical elements in the data and returns None if no numerical element has been found. In contrast to standard math and numpy functions, this function is robust against type violations.
Parameters : | data : list
|
---|---|
Returns : | out : float or None |
Returns the frequency table of the data as dictionary.
Parameters : | data : list
|
---|---|
Returns : | out : dict
|
Returns the mean of data.
Parameters : | data : list
|
---|---|
Returns : | out : float or None |
Notes
The function ignores all non-numerical elements in the data and returns None if no numerical element has been found. In contrast to standard math and numpy functions, this function is robust against type violations.
Returns the median of data.
Parameters : | data : list
|
---|---|
Returns : | out : float or None |
Notes
The function ignores all non-numerical elements in the data and returns None if no numerical element has been found. In contrast to standard math and numpy functions, this function is robust against type violations.
Returns the mode, that is, the most frequent value in data.
Parameters : | data : list
|
---|---|
Returns : | out : float or None |
Returns the sum of data.
The function ignores all non-numerical elements in the data and returns None if no numerical element has been found. In contrast to standard math and numpy functions, this function is robust against type violations.
Parameters : | data : list
|
---|---|
Returns : | out : float or None |