SimDataLst | R Documentation |
A list of data from K=20 sites where odd sites and even sites form two distinct groups. Each data contains information of site index, subject index, treatment assignment, covariates, true treatment effect, outcome.
SimDataLst
A list contains 20 data tables. Each data contains 100 rows and 10 variables.
A list contains 20 data tables
Site index (for each data table within 'SimDataLst')
subject index (for each data table within 'SimDataLst')
Binary treatment assignment (for each data table within 'SimDataLst')
Covariates (for each data table within 'SimDataLst')
True treatment effect (for each data table within 'SimDataLst')
Outcome (for each data table within 'SimDataLst')
Obtained by the following codes:
coord_id <- 1
K <- 20
SimDataLst <- list()
for (k in 1:K) {
tmpdf <- GenSimData(k)
SimDataLst[[k]] <- tmpdf
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.