R/special_vectors.R
distribution_vector.Rd
vector of values that follow specified distribution
distribution_vector(size, distribution_type, distribution_arguments = list())
integer, size of the output vector
character, type of distribution. You can use direct function name, e.g. "rnorm" or a regular name (e.g. "normal", "gaussian"). All standard distributions from stats package are covered. For a list check Distributions
list of arguments required by the distribution function
distribution_vector(10, "normal", list(mean = 2, sd = 0.5))
#> [1] 1.368604 1.851695 1.977655 1.065579 1.552819 1.625961 2.104851 1.615148
#> [9] 2.124225 2.342137