Skip to contents

This takes a numeric matrix, bootstrap resamples each row, and then calculates the mean. The intended use case is for Bayesian posterior predictions from sample data. Instead of directly calculating the average marginal effect (AME) across all observed values, these can be bootstrapped, so that uncertainty in the target population, and thus the AME in the target population, can be incorporated. Model uncertainty is already assumed to be handled by the different posterior samples, which are assumed to be across rows.

Usage

rowBootMeans(x)

Arguments

x

A numeric matrix

Value

A numeric vector with the simple bootstrapped row means of the matrix

Examples


x <- matrix(1:9, byrow = TRUE, 3)
replicate(10, rowBootMeans(x))
#>          [,1]     [,2]     [,3]     [,4]     [,5]     [,6]     [,7]     [,8]
#> [1,] 1.000000 1.666667 2.333333 1.333333 1.666667 2.000000 1.666667 3.000000
#> [2,] 5.666667 5.000000 4.666667 4.666667 4.000000 5.333333 5.333333 4.666667
#> [3,] 8.666667 8.333333 8.000000 7.000000 8.000000 8.000000 7.000000 7.333333
#>          [,9]    [,10]
#> [1,] 2.666667 2.000000
#> [2,] 5.000000 5.666667
#> [3,] 7.666667 8.666667