View source: R/summary.CIMTx_ATE_sa.R
summary.CIMTx_ATE_sa | R Documentation |
Summarize a CIMTx_ATE_sa object
## S3 method for class 'CIMTx_ATE_sa' summary(object, ...)
object |
a |
... |
further arguments passed to or from other methods. |
a data frame containing the estimation, standard error, lower and upper 95% CI for the causal estimand in terms of RD.
Hadley Wickham (2019). stringr: Simple, Consistent Wrappers for Common String Operations. R package version 1.4.0. URL:https://CRAN.R-project.org/package=stringr
lp_w_all <- c( ".4*x1 + .1*x2 - 1.1*x4 + 1.1*x5", # w = 1 ".2 * x1 + .2 * x2 - 1.2 * x4 - 1.3 * x5" ) # w = 2 nlp_w_all <- c( "-.5*x1*x4 - .1*x2*x5", # w = 1 "-.3*x1*x4 + .2*x2*x5" ) # w = 2 lp_y_all <- rep(".2*x1 + .3*x2 - .1*x3 - 1.1*x4 - 1.2*x5", 3) nlp_y_all <- rep(".7*x1*x1 - .1*x2*x3", 3) X_all <- c( "rnorm(0, 0.5)", # x1 "rbeta(2, .4)", # x2 "runif(0, 0.5)", # x3 "rweibull(1,2)", # x4 "rbinom(1, .4)" # x5 ) set.seed(1111) data <- data_sim( sample_size = 100, n_trt = 3, x = X_all, lp_y = lp_y_all, nlp_y = nlp_y_all, align = FALSE, lp_w = lp_w_all, nlp_w = nlp_w_all, tau = c(0.5, -0.5, 0.5), delta = c(0.5, 0.5), psi = 2 ) c_grid <- c( "runif(-0.6, 0)", # c(1,2) "runif(0, 0.6)", # c(2,1) "runif(-0.6, 0)", # c(2,3) "seq(-0.6, 0, by = 0.3)", # c(1,3) "seq(0, 0.6, by = 0.3)", # c(3,1) "runif(0, 0.6)" # c(3,2) ) sensitivity_analysis_parallel_ATE_result <- sa( m1 = 1, x = data$covariates, y = data$y, w = data$w, prior_c_function = c_grid, nCores = 1, estimand = "ATE", ) summary(sensitivity_analysis_parallel_ATE_result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.