Go to the first, previous, next, last section, table of contents.

Weighted Samples

The functions described in this section allow the computation of statistics for weighted samples. The functions accept an array of samples, @math{x_i}, with associated weights, @math{w_i}. Each sample @math{x_i} is considered as having been drawn from a Gaussian distribution with variance @math{\sigma_i^2}. The sample weight @math{w_i} is defined as the reciprocal of this variance, @math{w_i = 1/\sigma_i^2}. Setting a weight to zero corresponds to removing a sample from a dataset.

Statistics: double gsl_stats_wmean (const double w[], size_t wstride, const double data[], size_t stride, size_t n)
This function returns the weighted mean of the dataset data with stride stride and length n, using the set of weights w with stride wstride and length n. The weighted mean is defined as,

Statistics: double gsl_stats_wvariance (const double w[], size_t wstride, const double data[], size_t stride, size_t n)
This function returns the estimated variance of the dataset data with stride stride and length n, using the set of weights w with stride wstride and length n. The estimated variance of a weighted dataset is defined as,

Note that this expression reduces to an unweighted variance with the familiar @math{1/(N-1)} factor when there are @math{N} equal non-zero weights.

Statistics: double gsl_stats_wvariance_m (const double w[], size_t wstride, const double data[], size_t stride, size_t n, double wmean)
This function returns the estimated variance of the weighted dataset data using the given weighted mean wmean.

Statistics: double gsl_stats_wsd (const double w[], size_t wstride, const double data[], size_t stride, size_t n)
The standard deviation is defined as the square root of the variance. This function returns the square root of the corresponding variance function gsl_stats_wvariance above.

Statistics: double gsl_stats_wsd_m (const double w[], size_t wstride, const double data[], size_t stride, size_t n, double wmean)
This function returns the square root of the corresponding variance function gsl_stats_wvariance_m above.

Statistics: double gsl_stats_wvariance_with_fixed_mean (const double w[], size_t wstride, const double data[], size_t stride, size_t n)
This function computes an unbiased estimate of the variance of weighted dataset data when the population mean mean of the underlying distribution is known a priori. In this case the estimator for the variance replaces the sample mean @math{\Hat\mu} by the known population mean @math{\mu},

Statistics: double gsl_stats_wsd_with_fixed_mean (const double w[], size_t wstride, const double data[], size_t stride, size_t n)
The standard deviation is defined as the square root of the variance. This function returns the square root of the corresponding variance function above.

Statistics: double gsl_stats_wabsdev (const double w[], size_t wstride, const double data[], size_t stride, size_t n)
This function computes the weighted absolute deviation from the weighted mean of data. The absolute deviation from the mean is defined as,

Statistics: double gsl_stats_wabsdev_m (const double w[], size_t wstride, const double data[], size_t stride, size_t n, double wmean)
This function computes the absolute deviation of the weighted dataset data about the given weighted mean wmean.

Statistics: double gsl_stats_wskew (const double w[], size_t wstride, const double data[], size_t stride, size_t n)
This function computes the weighted skewness of the dataset data.

Statistics: double gsl_stats_wskew_m_sd (const double w[], size_t wstride, const double data[], size_t stride, size_t n, double wmean, double wsd)
This function computes the weighted skewness of the dataset data using the given values of the weighted mean and weighted standard deviation, wmean and wsd.

Statistics: double gsl_stats_wkurtosis (const double w[], size_t wstride, const double data[], size_t stride, size_t n)
This function computes the weighted kurtosis of the dataset data.

Statistics: double gsl_stats_wkurtosis_m_sd (const double w[], size_t wstride, const double data[], size_t stride, size_t n, double wmean, double wsd)
This function computes the weighted kurtosis of the dataset data using the given values of the weighted mean and weighted standard deviation, wmean and wsd.


Go to the first, previous, next, last section, table of contents.