qat (version 0.74)

qat_analyse_boot_distribution_2d: Perform a bootstrapped distribution check

Description

The measurement vector will be bootstrapped and statistical parameters will be determined.

Usage

qat_analyse_boot_distribution_2d(measurement_vector, bootruns)

Arguments

measurement_vector
The measurement vector (2d array), which should be tested
bootruns
Number of bootstrap runs, which should be performed

Value

It returns a list with the following entries:

Details

The measurement vector will be bottstrapped in direction of the first dimension with the number of runs, which is given by the parameter bootruns. From each runs, some statistical parameters will be calculated and given back in the resultlist.

See Also

qat_analyse_boot_distribution_1d, qat_plot_boot_distribution_1d

Examples

Run this code
vec <- array(rnorm(100),c(25,20))
result <- qat_analyse_boot_distribution_2d(vec, 50)

Run the code above in your browser using DataCamp Workspace