Edge flip score

Edge flip score

calculate_edge_flip(net1, net2, return = c("score", "all"),
  simplify = TRUE, limit_flips = 5, limit_combinations = choose(25,
  4))

Arguments

net1

Network 1

net2

Network 2

return

Whether to return only the score or the full output (all)

simplify

Whether or not to simplify the networks

limit_flips

Maximal number of flips to check

limit_combinations

Maximal number of combinations to check

Examples

net1 <- dyntoy::generate_milestone_network("linear") net2 <- dyntoy::generate_milestone_network("bifurcating") calculate_edge_flip(net1, net2)
#> Error in calculate_edge_flip(net1, net2): could not find function "calculate_edge_flip"
net1 <- dyntoy::generate_milestone_network("cyclic") net2 <- dyntoy::generate_milestone_network("diverging_with_loops") calculate_edge_flip(net1, net2)
#> Error in calculate_edge_flip(net1, net2): could not find function "calculate_edge_flip"