empirical_dist object x.R/empirical_dist.R
rmap.empirical_dist.RdMethod for obtaining the empirical distribution of a function of the
observations of empirical_dist object x.
# S3 method for class 'empirical_dist'
rmap(x, g, ...)An empirical_dist of the transformed observations.
ed <- empirical_dist(c(1, 2, 3, 4))
ed2 <- rmap(ed, function(x) x^2)
mean(ed2) # mean of 1, 4, 9, 16
#> [1] 7.5