Learn R Programming

milr (version 0.3.1)

DGP: 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 n. If m is an integer, each bag has the identical number of instances, m. If m is a vector, the ith bag has m[i] instances.

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

Run this code
# NOT RUN {
data1 <- DGP(50, 3, runif(10, -5, 5))
data2 <- DGP(50, sample(3:5, 50, TRUE), runif(10, -5, 5))
# }

Run the code above in your browser using DataLab