tidy_multi_single_dist {TidyDensity} | R Documentation |
Generate multiple distributions of data from the same tidy_
distribution function.
tidy_multi_single_dist(.tidy_dist = NULL, .param_list = list())
.tidy_dist |
The type of |
.param_list |
This must be a |
Generate multiple distributions of data from the same tidy_
distribution function. This allows you to simulate multiple distributions of
the same family in order to view how shapes change with parameter changes. You
can then visualize the differences however you choose.
A tibble
Steven P. Sanderson II, MPH
Other Multiple Distribution:
tidy_combine_distributions()
tidy_multi_single_dist(
.tidy_dist = "tidy_normal",
.param_list = list(
.n = 50,
.mean = c(-1, 0, 1),
.sd = 1,
.num_sims = 3,
.return_tibble = TRUE
)
)
tidy_multi_single_dist(
.tidy_dist = "tidy_normal",
.param_list = list(
.n = 50,
.mean = c(-1, 0, 1),
.sd = 1,
.num_sims = 3,
.return_tibble = FALSE
)
)