get_data {basksim} | R Documentation |
Simulate Data Based on a Binomial Distribution
Description
Simulate Data Based on a Binomial Distribution
Usage
get_data(k, n, p, iter, type = c("matrix", "bhmbasket"))
Arguments
k |
The number of baskets. |
n |
The sample size per basket. |
p |
Probabilities used to simulate the data |
iter |
The number of iterations in the simulation. Is ignored if
|
type |
Type of output. Use |
Details
For type = "bhmbasket"
this is simply a wraper for
bhmbasket::simulateScenarios
.
Value
If type = "matrix"
then a matrix is returned, if
type = "bhmbasket"
then an element with class scenario_list
.
Examples
get_data(k = 3, n = 20, p = c(0.2, 0.2, 0.5), iter = 1000)
[Package basksim version 1.0.0 Index]