Learn R Programming

metagen (version 1.0)

designY: Design: Gaussian responses (known heteroscedasticity)

Description

Method for generating a sampling design for data generation following a random effects meta regression model with known heteroscedasticity.

Usage

designY(n, h_bounds, d_bounds, x)

Arguments

n
resolution of the heterogeneity and heteroscedasticity parameters, i.e. the number of of different (heterogeneity, heteroscedasticity) pairs in the design.
h_bounds
bounds of the heterogeneity.
d_bounds
bounds of the heteroscedasticity.
x
design matrix.

Value

Function returns a data frame. Each line of this data frame can be an input to the function 'rY' which is used to sample data from such a design.

Details

Generates a sampling design for the heterogeneity 'h' and a heteroscedasticity 'd1', ..., 'dk'.

Points in the design are selected via a maxi-min hypercube sampling using the 'lhs' package in a predefined parameter cube.

Examples

Run this code
dY <- designY(n=15L, h_bounds=c(0,1), d_bounds=c(0.01,2),
x=cbind(1,1:7))

if(!all(dim(dY) == c(15,dim(cbind(1,1:7))[1]+1))) {
  stop("Wrong dimension")
}

Run the code above in your browser using DataLab