sim_data_interactive: Simulated data for examples

Description Usage Format Examples

Description

Simulated data to fit example models against

Usage

1

Format

a data.frame

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
set.seed(123456)
b0 <- 0.2 # true value for the intercept
b1 <- 0.5 # true value for first beta
b2 <- 0.7 # true value for second beta
b3 <- -0.3 # true value for second beta
n <- 500 # sample size
X1 <- runif(n, -1, 1)
X2 <- runif(n, -1, 1)
Z_interactive <- b0 + b1 * X1 + b2 * X2 + b3 * (X1 * X2)
Y_interactive <- rnorm(n, Z_interactive, 1)
sim_data_interactive <- data.frame(cbind(X1, X2, Y = Y_interactive))

BayesPostEst documentation built on Nov. 11, 2021, 9:07 a.m.