A simulated data set containing response variable, provider information and 5 covariates.
Usage
data(BinaryData)
Format
A list containing the following elements:
- data
example data.
Y
is the response variable;Prov.ID
is the center indicator (include 20 centers);Z1
, ...,Z5
are 5 continuous covariates.- Y.char
variable name of the response variable.
- prov.char
variable name of the provider indicator.
- Z.char
variable names of covariates.
- group
vector describing how the covariates are grouped.
Examples
data(BinaryData)
data <- BinaryData$data
head(data)
#> Y Prov.ID Z1 Z2 Z3 Z4 Z5
#> 1 1 10 -0.006 -0.159 0.588 0.378 -1.430
#> 2 0 11 0.862 -0.162 0.243 0.503 0.549
#> 3 0 11 0.453 0.961 0.665 0.522 0.859
#> 4 1 8 -0.286 0.001 0.903 0.886 -0.324
#> 5 0 13 0.564 -0.194 -0.062 -0.792 -0.783
#> 6 1 18 0.676 1.095 2.223 1.367 1.060