bootstrap_statistics Derived Type

type, public :: bootstrap_statistics

A collection of statistics resulting from the bootstrap process.


Contents


Components

Type Visibility Attributes Name Initial
real(kind=real64), public :: bias

The bias in the statistic.

real(kind=real64), public :: lower_confidence_interval

The lower confidence limit on the statistic.

real(kind=real64), public, allocatable, dimension(:) :: population

An array of the population values generated by the bootstrap process.

real(kind=real64), public :: standard_error

The standard error of the statistic.

real(kind=real64), public :: statistic_value

The value of the statistic of interest.

real(kind=real64), public :: upper_confidence_interval

The upper confidence limit on the statistic.