tree1 <- TreeTools::BalancedTree(9)
tree2 <- TreeTools::PectinateTree(9)
# Set graphical parameters
oPar <- par(mai = rep(0.1, 4), mfrow = c(2, 2))
plot(tree1)
plot(tree2)
# Reduce trees by collapsing identical clades
confl <- ReduceTrees(tree1, tree2)
plot(confl[[1]])
plot(confl[[2]])
# Restore graphical parameters
par(oPar)
Run the code above in your browser using DataLab