15.12.2012 Views

scipy tutorial - Baustatik-Info-Server

scipy tutorial - Baustatik-Info-Server

scipy tutorial - Baustatik-Info-Server

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

SciPy Reference Guide, Release 0.8.dev<br />

obrientransform(*args)Computes a transform on input data (any number of columns).<br />

samplevar(*args,<br />

**kwds)<br />

samplevar is deprecated!<br />

samplestd(*args,<br />

**kwds)<br />

samplestd is deprecated!<br />

signaltonoise(a[, Calculates the signal-to-noise ratio, defined as the ratio between the mean and the<br />

axis, ddof])<br />

standard deviation.<br />

bayes_mvs(data[,<br />

alpha])<br />

Return Bayesian confidence intervals for the mean, var, and std.<br />

var(a[, axis, bias]) Returns the estimated population variance of the values in the passed<br />

std(a[, axis, bias]) Returns the estimated population standard deviation of the values in<br />

stderr(*args, **kwds) stderr is deprecated!<br />

sem(a[, axis, ddof]) Calculates the standard error of the mean (or standard error of measurement) of the<br />

values in the passed array.<br />

z(*args, **kwds) z is deprecated!<br />

zs(*args, **kwds) zs is deprecated!<br />

zmap(scores, compare[, Returns an array of z-scores the shape of scores (e.g., [x,y]), compared to array<br />

axis])<br />

passed to compare (e.g., [time,x,y]).<br />

obrientransform(*args)<br />

Computes a transform on input data (any number of columns). Used to test for homogeneity of variance prior<br />

to running one-way stats. Each array in *args is one level of a factor. If an F_oneway() run on the transformed<br />

data and found significant, variances are unequal. From Maxwell and Delaney, p.112.<br />

Returns: transformed data for use in an ANOVA<br />

samplevar(*args, **kwds)<br />

samplevar is deprecated!<br />

<strong>scipy</strong>.stats.samplevar is deprecated; please update your code to use numpy.var.<br />

Please note that numpy.var axis argument defaults to None, not 0.<br />

Returns the sample standard deviation of the values in the passed array (i.e., using N). Axis can<br />

equal None (ravel array first), an integer (the axis over which to operate)<br />

samplestd(*args, **kwds)<br />

samplestd is deprecated!<br />

<strong>scipy</strong>.stats.samplestd is deprecated; please update your code to use numpy.std.<br />

Please note that numpy.std axis argument defaults to None, not 0.<br />

Returns the sample standard deviation of the values in the passed array (i.e., using N). Axis can equal None<br />

(ravel array first), an integer (the axis over which to operate).<br />

signaltonoise(a, axis=0, ddof=0)<br />

Calculates the signal-to-noise ratio, defined as the ratio between the mean and the standard deviation.<br />

Parameters<br />

a: array-like :<br />

An array like object containing the sample data<br />

axis: int or None, optional :<br />

If axis is equal to None, the array is first ravel’d. If axis is an integer, this is the axis<br />

over which to operate. Defaults to None???0<br />

ddof : integer, optional, default 0<br />

degrees of freedom correction for standard deviation<br />

3.18. Statistical functions (<strong>scipy</strong>.stats) 649

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!