Skip to contents

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.

Usage

fill_complementary_probs(dat_long)

Arguments

dat_long

Long format data frame with from, to, prob, vals columns.

Value

Long format tree object

Details

Only works for binary trees or when one of n is missing.

Examples

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)
#> # A tibble: 6 × 4
#>    from    to  prob  vals
#>   <dbl> <dbl> <dbl> <dbl>
#> 1     1     2   0.2    10
#> 2     1     3   0.8     1
#> 3     2     4   0.2    10
#> 4     2     5   0.8     1
#> 5     3     6   0.2    10
#> 6     3     7   0.8     1