get_g_functions | R Documentation |
get_g_functions()
returns a list of (fitted) g-functions
associated with each stage.
get_g_functions(object)
object |
Object of class policy_eval or policy_object. |
List of class nuisance_functions.
predict.nuisance_functions
### Two stages:
d <- sim_two_stage(5e2, seed=1)
pd <- policy_data(d,
action = c("A_1", "A_2"),
baseline = c("B"),
covariates = list(L = c("L_1", "L_2"),
C = c("C_1", "C_2")),
utility = c("U_1", "U_2", "U_3"))
pd
# evaluating the static policy a=1 using inverse propensity weighting
# based on a GLM model at each stage
pe <- policy_eval(type = "ipw",
policy_data = pd,
policy = policy_def(1, reuse = TRUE, name = "A=1"),
g_models = list(g_glm(), g_glm()))
pe
# getting the g-functions
g_functions <- get_g_functions(pe)
g_functions
# getting the fitted g-function values
head(predict(g_functions, pd))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.