scipy.stats.mstats.sem

scipy.stats.mstats.sem(a, axis=0)

Calculates the standard error of the mean (or standard error of measurement) of the values in the passed array.

Parameters :

a: array like :

An array containing the values for which

axis: int or None, optional. :

if equal None, ravel array first. If equal to an integer, this will be the axis over which to operate. Defaults to 0.

ddof: int :

Delta degrees-of-freedom. How many degrees of freedom to adjust for bias in limited samples relative to the population estimate of variance

Returns :

The standard error of the mean in the sample(s), along the input axis :

Previous topic

scipy.stats.mstats.scoreatpercentile

Next topic

scipy.stats.mstats.signaltonoise

This Page