eelbrain.pipeline.TTestIndependent
- class eelbrain.pipeline.TTestIndependent(model, c1, c0, tail=0)
Independent measures t-test (comparing groups of subjects)
- Parameters:
See also
Examples
Sample test definitions, assuming that the experiment has two groups called
'younger'
and'older'
:variables = { 'age': GroupVar(['younger', 'older']), } tests = { 'old=young': TTestIndependent('group', 'older', 'younger'), 'old>young': TTestIndependent('group', 'older', 'younger', tail=1), }