Computes the confidence interval for the specified distribution.
See Also
Computes the confidence interval for the specified distribution.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(distribution), | intent(in) | :: | dist |
The distribution object defining the probability distribution to establish the confidence level. |
||
real(kind=real64), | intent(in) | :: | alpha |
The probability value of interest. For instance, use a value of 0.05 for a confidence level of 95%. |
||
real(kind=real64), | intent(in) | :: | s |
The sample standard deviation. |
||
integer(kind=int32), | intent(in) | :: | n |
The number of samples in the data set. |
The result.
Computes the confidence interval for the specified distribution.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(distribution), | intent(in) | :: | dist |
The distribution object defining the probability distribution to establish the confidence level. |
||
real(kind=real64), | intent(in) | :: | alpha |
The probability value of interest. For instance, use a value of 0.05 for a confidence level of 95%. |
||
real(kind=real64), | intent(in) | :: | x(:) |
An N-element array containing the data to analyze. |
The result.