getOutput | R Documentation |
getOutput
getOutput(
ConcreteEst,
Estimand = c("Risk"),
Intervention = seq_along(ConcreteEst),
GComp = NULL,
Simultaneous = TRUE,
Signif = 0.05
)
## S3 method for class 'ConcreteOut'
plot(x, NullLine = TRUE, ask = TRUE, ...)
ConcreteEst |
"ConcreteEst" object |
Estimand |
character: "RR" for Relative Risks, "RD" for Risk Differences, and "Risk" for absolute risks |
Intervention |
numeric (default = seq_along(ConcreteEst)): the ConcreteEst list element corresponding to the target intervention. For comparison estimands such as RD and RR, Intervention should be a numeric vector with length 2, the first term designating "treatment" ConcreteEst list element and the second designating the "control". |
GComp |
logical: return g-formula point estimates based on initial nuisance parameter estimation |
Simultaneous |
logical: return simultaneous confidence intervals |
Signif |
numeric (default = 0.05): alpha for 2-tailed hypothesis testing |
x |
a ConcreteOut object |
NullLine |
logical: to plot a red line at y=1 for RR plots and at y=0 for RD plots |
ask |
logical: to prompt for user input before each plot |
... |
additional arguments to be passed into plot methods |
data.table of point estimates and standard deviations
plot(ConcreteOut)
: plot.ConcreteOut plot method for "ConcreteOut" class
library(data.table)
library(concrete)
data <- as.data.table(survival::pbc)
data <- data[1:200, .SD, .SDcols = c("id", "time", "status", "trt", "age", "sex")]
data[, trt := sample(0:1, nrow(data), TRUE)]
# formatArguments() returns correctly formatted arguments for doConcrete()
concrete.args <- formatArguments(DataTable = data,
EventTime = "time",
EventType = "status",
Treatment = "trt",
ID = "id",
TargetTime = 2500,
TargetEvent = c(1, 2),
Intervention = makeITT(),
CVArg = list(V = 2))
# doConcrete() returns tmle (and g-formula plug-in) estimates of targeted risks
concrete.est <- doConcrete(concrete.args)
# getOutput returns risk difference, relative risk, and treatment-specific risks
# GComp=TRUE returns g-formula plug-in estimates
# Simultaneous=TRUE computes simultaneous CI for all output TMLE estimates
concrete.out <- getOutput(concrete.est, Estimand = c("RR", "RD", "Risk"),
GComp = TRUE, Simultaneous = TRUE)
print(concrete.out)
plot(concrete.out, ask = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.