DGP: DGP: data generation

Description Usage Arguments Value Examples

View source: R/DGP.R

Description

Generating the multiple-instance data set.

Usage

1
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

1
2
data1 <- DGP(50, 3, runif(10, -5, 5))
data2 <- DGP(50, sample(3:5, 50, TRUE), runif(10, -5, 5))

PingYangChen/milr documentation built on Oct. 30, 2020, 2:18 a.m.