The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
The simDAG
package can be used to generate all kinds of
data, as shown in the many examples and other vignettes of this package.
In this vignette we will further illustrate the capabilities of the
package, by giving very short and simplified examples on how to use
simDAG
to generate multiple different kinds of data. The
vignette can be seen as a sort of “cookbook”, in the sense that it
includes the building blocks for many different possible data generation
processes (DGP), which users can expand on for their specific needs.
Note that the examples shown are not meant to be realistic, they are
only meant to show the general structure of the required code.
This vignette assumes that the reader is already somewhat familiar
with the simDAG
syntax. More detailed explanations of how
to simulate data using a time-fixed DAG and DAGs including
time-dependent variables is given in other vignettes and the
documentation of the functions. We recommend consulting these vignettes
first to get a feeling for the required syntax before diving into these
specific examples.
First, we will give some examples on how data for randomized
controlled trials (RCT) could be generated. In a classic RCT, the
treatment of interest (below named Treatment
) is randomly
assigned to the individuals of the study, making it a “root node” (a
variable with no direct causes) in the terminology of DAGs.
Below is an example for an RCT with two treatment groups, a binary
outcome and two baseline covariates (Age
and
Sex
):
dag <- empty_dag() +
node("Age", type="rnorm", mean=55, sd=5) +
node("Sex", type="rbernoulli", p=0.5) +
node("Treatment", type="rbernoulli", p=0.5) +
node("Outcome", type="binomial",
formula= ~ -12 + Age*0.2 + Sex*1.1 + Treatment*-0.5)
data <- sim_from_dag(dag, n_sim=1000)
head(data)
#> Age Sex Treatment Outcome
#> <num> <lgcl> <lgcl> <lgcl>
#> 1: 54.10358 TRUE FALSE TRUE
#> 2: 53.99942 FALSE FALSE FALSE
#> 3: 48.99740 FALSE TRUE FALSE
#> 4: 57.47850 FALSE TRUE FALSE
#> 5: 59.82293 FALSE TRUE TRUE
#> 6: 56.46213 FALSE FALSE TRUE
The example from earlier can easily be made a little more complex, by
including three treatment groups instead of just two. This can be
achieved by using the rcategorical()
function as node type
instead of the rbernoulli()
function.
dag <- empty_dag() +
node("Age", type="rnorm", mean=55, sd=5) +
node("Sex", type="rbernoulli", p=0.5, output="numeric") +
node("Treatment", type="rcategorical", probs=c(0.33333, 0.33333, 0.33333),
labels=c("Placebo", "Med1", "Med2"), output="factor") +
node("Outcome", type="binomial",
formula= ~ -12 + Age*0.2 + Sex*1.1 + TreatmentMed1*-0.5 +
TreatmentMed2*-1)
data <- sim_from_dag(dag, n_sim=1000)
head(data)
#> Age Sex Treatment Outcome
#> <num> <num> <fctr> <lgcl>
#> 1: 48.82329 1 Med2 FALSE
#> 2: 57.53600 0 Med1 FALSE
#> 3: 50.56135 1 Med1 FALSE
#> 4: 55.77965 1 Placebo TRUE
#> 5: 58.75004 0 Med2 FALSE
#> 6: 56.18307 0 Med2 FALSE
By setting probs=c(0.33333, 0.33333, 0.33333)
, each
treatment group is choosen with a probability of 0.33333, meaning that
the resulting groups should be roughly of equal size in expectation.
The previous two examples assumed that there was a single fixed time
at which the binary outcome was measured. Below we switch things up a
bit by using a continuous outcome that is measured at 5 different points
in time after baseline. The syntax is nearly the same as before, with
the major difference being that we now use a node_td()
call
to define the outcome, because it is time-dependent. Additionally,
because of this inclusion of a time-dependent node, we have to use the
sim_discrete_time()
function instead of the
sim_from_dag()
function. Finally, the
sim2data()
has to be called to obtain the desired output in
the long-format.
dag <- empty_dag() +
node("Age", type="rnorm", mean=55, sd=5) +
node("Sex", type="rbernoulli", p=0.5, output="numeric") +
node("Treatment", type="rbernoulli", p=0.5) +
node_td("Outcome", type="gaussian",
formula= ~ -12 + Age*0.2 + Sex*1.1 + Treatment*-0.5, error=1)
sim <- sim_discrete_time(dag, n_sim=1000, max_t=5, save_states="all")
data <- sim2data(sim, to="long")
head(data)
#> Key: <.id, .time>
#> .id .time Age Sex Treatment Outcome
#> <int> <int> <num> <num> <lgcl> <num>
#> 1: 1 1 47.82822 0 FALSE -2.504335
#> 2: 1 2 47.82822 0 FALSE -2.158093
#> 3: 1 3 47.82822 0 FALSE -2.350866
#> 4: 1 4 47.82822 0 FALSE -1.686581
#> 5: 1 5 47.82822 0 FALSE -1.876626
#> 6: 2 1 54.03705 1 FALSE -2.187397
Previously we assumed that the treatment was assigned at baseline and never changed throughout the study. In real RCTs, individuals are often assigned to treatment strategies instead (for example: one pill per week). Some individuals might not adhere to their assigned treatment strategy, by for example “switching back” to not taking the pill.
The following code shows one possible way to simulate such data. In
the shown DGP, individuals are assigned to a treatment strategy at
baseline. Here, Treatment = FALSE
refers to the control
condition in which the individual should not take any pills. In the
intervention group (Treatment = TRUE
), however, the
individual is assigned to take a pill every week. On average, 5% of
these individuals stop taking their pills with each passing week. Once
they stop, they never start taking them again. The continuous outcome at
each observation time depends on how many pills each individual took in
total. None of the individuals in the control group start taking pills.
For simplicity, the simulation is run without any further covariates for
5 weeks.
# function to calculate the probability of taking the pill at t,
# given the current treatment status of the person
prob_treat <- function(data) {
fifelse(!data$Treatment_event, 0, 0.95)
}
dag <- empty_dag() +
node("Treatment_event", type="rbernoulli", p=0.5) +
node_td("Treatment", type="time_to_event", parents=c("Treatment_event"),
prob_fun=prob_treat, event_count=TRUE, event_duration=1) +
node_td("Outcome", type="gaussian", formula= ~ -2 +
Treatment_event_count*-0.3, error=2)
sim <- sim_discrete_time(dag, n_sim=1000, max_t=5, save_states="all")
data <- sim2data(sim, to="long")
head(data)
#> Key: <.id, .time>
#> .id .time Treatment Outcome Treatment_event_count
#> <int> <int> <lgcl> <num> <num>
#> 1: 1 1 TRUE -4.160177 1
#> 2: 1 2 TRUE -1.259056 2
#> 3: 1 3 TRUE -2.397425 3
#> 4: 1 4 TRUE -3.564521 4
#> 5: 1 5 TRUE -2.224830 5
#> 6: 2 1 FALSE -1.541366 0
What this DAG essentially means is that first, the
Treatment_event
column is generated, which includes the
assigned treatment at baseline. We called it
Treatment_event
here instead of just
Treatment
, because the value in this column should be
updated with each iteration and nodes of type
"time_to_event"
always split the node into two columns:
status and time. By setting event_count=TRUE
in the
node_td()
call for the Treatment
node, a count
of the amount of pills taken up to \(t\) is directly calculated at each point in
time (column Treatment_event_count
), which can then be used
directly to generate the Outcome
node.
This simulation could be made more realistic (or just more complex), by for example adding either of the following things:
These additions are left as an exercise to the user.
Instead of randomly assigning individuals to the treatment,
many trials actually randomly assign the treatment at the level of
clinics or other forms of clusters, which is fittingly called
cluster randomization. This may be implemented in simDAG
using the following syntax:
dag <- empty_dag() +
node("Clinic", type="rcategorical", probs=rep(0.02, 50)) +
node("Treatment", type="identity", formula= ~ Clinic >= 25) +
node("Outcome", type="poisson", formula= ~ -1 + Treatment*4 + (1|Clinic),
var_corr=0.5)
data <- sim_from_dag(dag, n_sim=1000)
#> Lade nötigen Namensraum: simr
head(data)
#> Clinic Treatment Outcome
#> <int> <lgcl> <int>
#> 1: 33 TRUE 15
#> 2: 2 FALSE 1
#> 3: 16 FALSE 0
#> 4: 24 FALSE 3
#> 5: 49 TRUE 17
#> 6: 31 TRUE 12
In this DGP, each individual is randomly assigned to one of 50 Clinics with equal probability. All patients in clinics numbered 0-24 are assigned to the control group, while the other patients are assigned to the treatment group. The outcome is then generated using a Poisson regression with a random intercept based on the clinic.
In all previous examples, the variable of interest was a treatment
that was randomly assigned and did not depend on other variables
(excluding the Clinic
for the cluster randomization
example). In observational studies, the variable of interest is usually
not randomly assigned. Below are some examples for generating such
observational study data.
In the following example, the treatment probability is dependent on both a categorical and a continuous variable, which both also cause the outcome:
dag <- empty_dag() +
node("cat", type="rcategorical", probs=c(0.4, 0.2, 0.2),
labels=LETTERS[1:3]) +
node("cont", type="rbeta", shape1=0.2, shape2=1.2) +
node("treatment", type="binomial",
formula= ~ -0.2 + catB*0.3 + catC*1 + cont*0.2) +
node("outcome", type="gaussian",
formula= ~ 3 + catB*1.1 + catC*0.2 + cont*-0.1,
error=1)
data <- sim_from_dag(dag, n_sim=100)
head(data)
#> cat cont treatment outcome
#> <char> <num> <lgcl> <num>
#> 1: C 3.563297e-03 TRUE 4.563690
#> 2: C 2.438739e-01 TRUE 2.971591
#> 3: A 5.213387e-01 TRUE 2.457812
#> 4: C 7.783988e-01 FALSE 2.023251
#> 5: C 2.070797e-01 TRUE 4.646090
#> 6: A 1.712023e-08 FALSE 2.873736
If the goal was to estimate the causal effect of the treatment on the
outcome, we would need to adjust for both cat
and
cont
here, using for example a linear regression model
(same as in the DGP) or something like inverse probability of treatment
weighting.
Here we give a small example for a longitudinal non-randomized study
in which the treatment
at \(t\) is dependent on past values of itself,
and on past values of the outcome
. Additionally, the
outcome
is dependent on past values of itself and on the
current treatment
. We use the discrete-time simulation
approach implemented in the sim_discrete_time()
function to
achieve this:
## function that generates the probability of treatment at t
## for all individuals, given the current state of the simulation
prob_treat <- function(data, base_p, rr_treat, rr_outcome) {
base_p * rr_treat^(data$treatment_event) * rr_outcome^(data$outcome_event)
}
## function that generates the probability of treatment at t
## for all individuals, given the current state of the simulation
prob_outcome <- function(data, base_p, rr_treat, rr_outcome) {
base_p * rr_treat^(data$treatment_event) * rr_outcome^(data$outcome_event)
}
dag <- empty_dag() +
node_td("treatment", type="time_to_event", prob_fun=prob_treat,
parents=c("outcome_event"), event_duration=1,
base_p=0.05, rr_treat=2, rr_outcome=0.5) +
node_td("outcome", type="time_to_event", prob_fun=prob_outcome,
parents=c("treatment_event"),
event_duration=1, immunity_duration=40,
base_p=0.01, rr_treat=0.3, rr_outcome=1.2)
sim <- sim_discrete_time(dag, n_sim=100, max_t=500)
data <- sim2data(sim, to="start_stop", overlap=TRUE)
head(data)
#> .id start stop treatment outcome
#> <int> <int> <num> <lgcl> <lgcl>
#> 1: 1 1 5 FALSE FALSE
#> 2: 1 5 6 TRUE FALSE
#> 3: 1 6 16 FALSE FALSE
#> 4: 1 16 17 TRUE FALSE
#> 5: 1 17 27 FALSE FALSE
#> 6: 1 27 28 TRUE FALSE
In this simulation, all individuals start out with no
treatment
and without having experienced the
outcome
. The baseline probability to get the treatment is
0.05 (base_p=0.05
). It is twice as likely that someone who
got the treatment
in the last period of time gets it again
in the next period of time (rr_treat=2
), and it is much
less likely that someone who experienced the outcome
at
\(t-1\) will start treatment
(rr_outcome=0.5
). Similarly, the baseline probability of
the outcome
is base_p=0.01
, with a much lower
probability of experiencing it when currently receiving the
treatment
(rr_treat=0.3
) and a slightly higher
chance of experiencing it again when having it at \(t-1\) (rr_outcome=1.2
).
The simDAG
package directly supports the inclusion of
arbitrary mixed model syntax in the formula
interface of
nodes of type "gaussian"
, "binomial"
and
"poisson"
, which makes it relatively straightforward to
simulate multi-level data as well. In the following example, we consider
students that are nested in different schools. The outcome is a
continuous score of some kind.
dag <- empty_dag() +
node("school", type="rcategorical", probs=rep(0.1, 10),
labels=LETTERS[1:10]) +
node("female", type="rbernoulli", p=0.5) +
node("age", type="rnorm", mean=12, sd=3) +
node("score", type="gaussian",
formula= ~ -2 + female*3 + age*0.1 + (1|school),
var_corr=0.5, error=1)
data <- sim_from_dag(dag, n_sim=10)
head(data)
#> school female age score
#> <char> <lgcl> <num> <num>
#> 1: I FALSE 10.630016 -1.0475656
#> 2: J FALSE 12.514398 -0.9447349
#> 3: B FALSE 19.428092 -0.1196652
#> 4: A TRUE 10.549850 -0.3101672
#> 5: E FALSE 15.268302 2.3198466
#> 6: F TRUE 9.177084 3.8763334
In this example, there is a single random effect for school, with a
standard deviation of 0.5. This example could be expanded to include a
random slope for age per school, by exchanging (1|school)
with (age|school)
, although we would then also need to
adjust the var_corr
argument accordingly. More examples are
given in the formula vignette.
Instead of using random effects and random slopes, another
possibility to simulate a sort of “mixed” variables is to directly model
it using different regression models for different individuals. This can
be done using the "mixture"
node type. Consider the
following example:
dag <- empty_dag() +
node("strata", type="rbernoulli", p=0.5) +
node(c("var1", "var2"), type="rnorm", mean=0, sd=1) +
node("Y", type="mixture", parents=c("strata", "var1", "var2"),
distr=list(
"strata==0", node(".", type="gaussian",
formula= ~ -2 + var1*2 + var2*-0.5, error=1),
"strata==1", node(".", type="gaussian",
formula= ~ 5 + var1*-1 + var2*2.3, error=1.5)
))
data <- sim_from_dag(dag, n_sim=10)
head(data)
#> strata var1 var2 Y
#> <lgcl> <num> <num> <num>
#> 1: TRUE -0.07074341 0.447906259 4.2715207
#> 2: FALSE -0.78074064 -0.252091165 -3.5806737
#> 3: FALSE 0.47068990 -1.028442360 -0.2300883
#> 4: TRUE 0.22370260 1.448593774 8.9315921
#> 5: TRUE 1.30191347 -0.009235286 4.4649921
#> 6: TRUE 0.60680890 0.735649599 5.1541787
Using the distr
argument, we can easily define to which
simulated individuals the corresponding node definitions should be
applied to. In the example above, we defined different linear regression
models for individuals with strata==0
and for individuals
with strata==1
. It would also be possible to use entirely
different node types etc.
One possibility to introduce a kind of outliers to a variable, is by defining the variable that should contain it as a kind of mixture distribution, made up of two parts, similar to how zero-inflated models work. First, values are generated from the general distribution. Then, if that variable exceeds some value, sample different values for it. A very simple example:
dag <- empty_dag() +
node(c("A", "B", "C"), type="rnorm") +
node("Y", type="mixture", parents=c("A", "B", "C"),
distr=list(
"TRUE", node(".", type="gaussian", formula= ~ -2 + A*0.1 + B*1 + C*-2,
error=1),
"Y > 3", node(".", type="rnorm", mean=10000, sd=500)
))
data <- sim_from_dag(dag, n_sim=10000)
Here, we first simulate 3 standard normal variables A
,
B
and C
, which will be used as predictor
variables for our desired outcome Y
. For Y
itself, we use the "mixture"
node type, which allows us to
define the node as a mix of multiple node types, based on some
conditions, which are generated from one by one. Because we set the
first condition to TRUE
, the linear model next to it gets
applied to all individuals in the first run, generating values from the
specified linear model for all individuals. In the next run we condition
on Y
itself, instructing the function to only simulate new
values for Y > 3
. These values are drawn from a normal
distribution with a very high mean.
Real data usually includes at least some missing values in key variables. Below is a very simple example on how users could include missing values in their data:
dag <- empty_dag() +
node("A_real", type="rnorm", mean=10, sd=3) +
node("A_missing", type="rbernoulli", p=0.5) +
node("A_observed", type="identity",
formula= ~ fifelse(A_missing, NA, A_real))
data <- sim_from_dag(dag, n_sim=10)
head(data)
#> A_real A_missing A_observed
#> <num> <lgcl> <num>
#> 1: 8.989272 FALSE 8.989272
#> 2: 9.786513 FALSE 9.786513
#> 3: 7.859934 FALSE 7.859934
#> 4: 7.611410 TRUE NA
#> 5: 7.012871 FALSE 7.012871
#> 6: 8.122936 TRUE NA
In this DAG, the real values of node A
are generated
first. Afterwards, an indicator of whether the corresponding values is
observed is drawn randomly for each individual in node
A_missing
. The actually observed value, denoted
A_observed
, is then generated by simply using either the
value of A_real
or a simple NA
if
A_missing==TRUE
. The missingness shown here would
correspond to missing completely at random (MCAR) in
the categorisation by XX. Although this might seem a little cumbersome
at first, it does allow quite a lot of flexibility in the specification
of different missingness mechanisms. For example, to simulate
missing at random (MAR) patterns, we could use the
following code instead:
dag <- empty_dag() +
node("A_real", type="rnorm", mean=0, sd=1) +
node("B_real", type="rbernoulli", p=0.5) +
node("A_missing", type="rbernoulli", p=0.1) +
node("B_missing", type="binomial", formula= ~ -5 + A_real*0.1) +
node("A_observed", type="identity",
formula= ~ fifelse(A_missing, NA, A_real)) +
node("B_observed", type="identity",
formula= ~ fifelse(B_missing, NA, B_real))
data <- sim_from_dag(dag, n_sim=10)
head(data)
#> A_real B_real A_missing B_missing A_observed B_observed
#> <num> <lgcl> <lgcl> <lgcl> <num> <lgcl>
#> 1: -1.58662145 TRUE FALSE FALSE -1.5866215 TRUE
#> 2: -0.78509572 FALSE FALSE FALSE -0.7850957 FALSE
#> 3: -1.55153510 TRUE FALSE FALSE -1.5515351 TRUE
#> 4: 1.32864019 TRUE FALSE FALSE 1.3286402 TRUE
#> 5: -0.04299984 TRUE TRUE FALSE NA TRUE
#> 6: -0.34161559 FALSE FALSE FALSE -0.3416156 FALSE
Here, the missingness in A_observed
is again MCAR,
because it is independent of everything. The missingness in
B_observed
, however, is MAR because the probability of
missingness is dependent on the actually observed value of
A_real
.
Measurement error refers to situations in which variables of interest
are not measured perfectly. For example, the disease of interest may
only be detected in 90% of all patients with the disease and may falsely
be detected in 1% of all patients without the disease. The same strategy
shown for missing values could be used to simulate such data using
simDAG
:
probs <- list(`TRUE`=0.9, `FALSE`=0.01)
dag <- empty_dag() +
node("Disease_real", type="rbernoulli", p=0.5) +
node("Disease_observed", type="conditional_prob", parents="Disease_real",
probs=probs)
data <- sim_from_dag(dag, n_sim=10)
head(data)
#> Disease_real Disease_observed
#> <lgcl> <lgcl>
#> 1: FALSE FALSE
#> 2: TRUE TRUE
#> 3: TRUE TRUE
#> 4: TRUE TRUE
#> 5: FALSE FALSE
#> 6: TRUE TRUE
In this example, the disease is present in 50% of all individuals. By
using a node with type="conditional_prob"
we can easily
draw new values for the observed disease status by specifying the
probs
argument correctly. We could similarly extend this
example to make the probability of misclassification dependent on
another variable:
# first TRUE / FALSE refers to Sex = TRUE / FALSE
# second TRUE / FALSE refers to Disease = TRUE / FALSE
probs <- list(TRUE.TRUE=0.9, TRUE.FALSE=0.01,
FALSE.TRUE=0.8, FALSE.FALSE=0.05)
dag <- empty_dag() +
node("Sex", type="rbernoulli", p=0.5) +
node("Disease_real", type="rbernoulli", p=0.5) +
node("Disease_observed", type="conditional_prob",
parents=c("Sex", "Disease_real"), probs=probs)
data <- sim_from_dag(dag, n_sim=1000)
head(data)
#> Sex Disease_real Disease_observed
#> <lgcl> <lgcl> <lgcl>
#> 1: FALSE TRUE TRUE
#> 2: FALSE FALSE FALSE
#> 3: TRUE FALSE FALSE
#> 4: TRUE FALSE FALSE
#> 5: FALSE FALSE FALSE
#> 6: FALSE FALSE TRUE
In this extended example, Sex
is equally distributed
among the population (with TRUE
= “female” and
FALSE
= “male”). In this example, the probability of being
diagnosed with the disease (Disease_observed
) if the
disease is actually present is 0.9 for females and only 0.8 for males.
Similarly, the probability of being diagnosed if the disease is not
present is 0.01 for females and 0.05 for males.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.