Multiple correlated distributions
the number of samples required
A named vector of the distributions of each variable
A list of lists of the arguments to pass to each distribution function
the correlations among the variables (can be a single number, vars\*vars matrix, vars\*vars vector, or a vars\*(vars-1)/2 vector)
logical. If true, params specify the sample parameters, not the population parameters
logical. If true, returns a matrix
a tbl of vars vectors
dist <- c(A = "norm",
B = "pois",
C = "binom")
params <- list(A = list(mean = 100, sd = 10),
B = list(lambda = 5),
C = list(size = 10, prob = 0.5))
x <- rmulti(100, dist, params, c(0.2, 0.4, 0.6), empirical = TRUE)
get_params(x)
#> n var A B C mean sd
#> 1 100 A 1.00 0.22 0.38 100.00 10.00
#> 2 100 B 0.22 1.00 0.57 5.01 2.30
#> 3 100 C 0.38 0.57 1.00 4.98 1.58