Home | Trees | Indices | Help |
|
---|
|
A measure computed from a Dataset
All dataset measures support arbitrary transformation of the measure after it has been computed. Transformation are done by processing the measure with a functor that is specified via the transformer keyword argument of the constructor. Upon request, the raw measure (before transformations are applied) is stored in the raw_results state variable.
Additionally all dataset measures support the estimation of the probabilit(y,ies) of a measure under some distribution. Typically this will be the NULL distribution (no signal), that can be estimated with permutation tests. If a distribution estimator instance is passed to the null_dist keyword argument of the constructor the respective probabilities are automatically computed and stored in the null_prob state variable.
For developers: All subclasses shall get all necessary parameters via their constructor, so it is possible to get the same type of measure for multiple datasets by passing them to the __call__() method successively.
|
|||
Inherited from |
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from |
|
|||
raw_results = StateVariable(enabled= False, doc= "Computed res
|
|||
null_prob = StateVariable(enabled= True) Stores the probability of a measure under the NULL hypothesis |
|||
null_t = StateVariable(enabled= False) Stores the t-score corresponding to null_prob under assumption of Normal distribution |
|||
__doc__ = enhancedDocString('DatasetMeasure', locals(), ClassW
|
|||
Inherited from |
|
|||
__transformer Functor to be called in return statement of all subclass __call__() methods. |
|
|||
Inherited from |
|
|
Compute measure on a given Dataset. Each implementation has to handle a single arguments: the source dataset. Returns the computed measure in some iterable (list-like) container applying transformer if such is defined |
Actually compute measure on a given Dataset. Each implementation has to handle a single arguments: the source dataset. Returns the computed measure in some iterable (list-like) container. |
String representation of DatasetMeasure Includes only arguments which differ from default ones
|
'Untraining' Measure Some derived classes might used classifiers, so we need to untrain those |
|
|
|
raw_results
|
__doc__
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Apr 23 23:09:29 2012 | http://epydoc.sourceforge.net |