Namespace:
Imsl.Stat
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
[SerializableAttribute] public class Summary |
Visual Basic (Declaration) |
---|
<SerializableAttribute> _ Public Class Summary |
Visual C++ |
---|
[SerializableAttribute] public ref class Summary |
Remarks
For the data in x, Summary computes the sample mean, variance, minimum, maximum, and other basic statistics. It also computes confidence intervals for the mean and variance if the sample is assumed to be from a normal population.
Missing values, that is, values equal to NaN (not a number), are
excluded from the computations. The sum of the weights is used only in
computing the mean (of course, then the weighted mean is used in
computing the central moments). The definitions of some of the
statistics are given below in terms of a single variable x. The
i-th datum is , with corresponding weight
. If weights are not specified, the
are identically one. The summation in each case
is over the set of valid observations, based on the presence of missing
values in the data.
Number of nonmissing observations,

Mean,

Variance,

Skewness,
![\frac{{\sum {f_i w_i \left( {x_i - \bar
x_w } \right)^3 /n} }}{{[\sum {f_i w_i \left( {x_i - \bar x_w }
\right)^2 /n]^{3/2} } }}](eqn/eqn_3936.png)
Excess or Kurtosis,
![\frac{{\sum {f_i w_i \left( {x_i -
\bar x_w } \right)^4 /n} }}{{[\sum {f_i w_i \left( {x_i - \bar x_w }
\right)^2 /n]^2 } }} - 3](eqn/eqn_3937.png)
Minimum,

Maximum,
