DGP {milr} | R Documentation |
DGP: data generation
Description
Generating the multiple-instance data set.
Usage
DGP(n, m, beta)
Arguments
n |
an integer. The number of bags. |
m |
an integer or vector of length |
beta |
a vector. The true regression coefficients. |
Value
a list including (1) bag-level labels, Z
, (2) the design matrix, X
, and (3) bag ID of each instance, ID
.
Examples
data1 <- DGP(50, 3, runif(10, -5, 5))
data2 <- DGP(50, sample(3:5, 50, TRUE), runif(10, -5, 5))
[Package milr version 0.3.1 Index]