Computes the mean of a sequence of doubles
Converts frequencies to probabilities by normalizing each count by the vector sum.
Cumulative distribution function of a bimodal Gaussian distribution.
Cumulative distribution function of a bimodal Gaussian distribution.
Given a pair of means and a pair of standard deviations for two Gaussian distributions; and a pair of weights specifying the balance of the two Gaussians, yields a function for evaluating the CDF of the bimodal distribution determined by these parameters.
The means of the two Gaussians.
The standard deviations of the two Gaussians.
The weights of the two Gaussians in the bimodal distribution.
Value for evaluating CDF(x)
CDF(x) for the bimodal Gaussian distribution.
Cumulative distribution function of a unimodal Gaussian distribution.
Cumulative distribution function of a unimodal Gaussian distribution.
Given the mean and standard deviation of a unimodal Gaussian, yields a function for evaluating the CDF of the Gaussian at a point x.
Mean of the Gaussian distribution.
Standard deviation of the Gaussian distribution.
Value for evaluating CDF(x)
CDF(x) for the unimodal Gaussian distribution.
Given a list of doubles, returns the mean and 95% confidence interval around the mean assuming normally distributed data.
Given a list of doubles, returns the mean and 95% confidence interval around the mean assuming normally distributed data.
List of doubles
(mean, 95% confidence interval)
Like meanAndConf but for a bootstrapped data set
Like meanAndConf but for a bootstrapped data set
values
(mean, values corresponding to 95% confidence interval)
Contains a handful of useful mathematical functions.