eelbrain.table.stats

eelbrain.table.stats(y, row, col=None, match=None, sub=None, fmt='%.4g', funcs=('mean',), data=None, title=None, caption=None, format=True)

Make a table with statistics

Parameters
Returns

Table with statistics.

Return type

table

Examples

>>> data = datasets.get_uts()
>>> table.stats('Y', 'A', 'B', data=data)
            B
     -----------------
     b0        b1
----------------------
a0   0.1668    -0.3646
a1   -0.4897   0.8746
>>> table.stats('Y', 'A', data=data, funcs=['mean', 'std'])
Condition   Mean     Std
--------------------------
a0          0.6691   1.37
a1          0.8596   1.192