View source: R/fill_complementary_probs.R
fill_complementary_probs | R Documentation |
Only one of each pair of branches is assigned a probability and then the other event probability is filled-in afterwards. This is good because specify fewer input values and if sampling probabilities we don't know the complementary probability.
fill_complementary_probs(dat_long)
dat_long |
Long format data frame with from, to, prob, vals columns. |
Only works for binary trees or when one of n is missing.
Long format tree object
dat <- tibble::tribble(~from, ~to, ~prob, ~vals, 1, 2, NA, 10, 1, 3, 0.8, 1, 2, 4, 0.2, 10, 2, 5, NA, 1, 3, 6, 0.2, 10, 3, 7, 0.8, 1) fill_complementary_probs(dat)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.