join_stages | R Documentation |
Join two stages in a staged event tree object, updating probabilities and log-likelihood accordingly.
join_stages(object, var, s1, s2)
join_stages_unsafe(object, var, s1, s2)
join_all(object, var, stages, ignore = NULL)
object |
an object of class |
var |
variable. |
s1 |
first stage. |
s2 |
second stage. |
stages |
a vector of stage names for variable |
ignore |
vector of stages which will be ignored and left untouched. |
This function joins two stages associated to the same variable, updating probabilities and log-likelihood if the object was fitted.
the staged event tree where s1
and s2
are joined.
model <- full(PhDArticles, lambda = 0)
model <- stages_fbhc(model)
model$stages$Kids
model <- join_stages(model, "Kids", "5", "6")
model$stages$Kids
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.