simul.comb.shift {RPANDA} | R Documentation |
Simulating trees from shift.estimates() results to test model adequacy
Description
Simulates trees with combination of shifts from shifts.estimates() output.
Usage
simul.comb.shift(n = 10000, phylo, sampling.fractions,
shift.res, combi = 1, clade.size = 5)
Arguments
n |
numeric. Defines the number of simulations to generate (see Details). |
phylo |
an object of type 'phylo' (see ape documentation). |
sampling.fractions |
the output resulting from get.sampling.fractions. |
shift.res |
the output resulting from shift.estimates. |
combi |
numeric. Corresponds to the rank of the combination in the global comparison (shift.res$total). |
clade.size |
numeric. Defines the minimum number of species in a subgroup. Default is 5. |
Details
Some combinations of shifts might be complex cases to simulate because the backbone needs to be rich enough to graft subclades. Some simulations will not satisfy this condition and will then be discarded. In consequence, the number of simulated phylogenies in the output will not be equal to n for complex simulations. This is why the value of n is high by default (n = 10000), to ensure to have enough simulations (around 500) to test the presence.
clade.size argument should be the same value for the whole procedure in the empirical case (same than for get.sampling.fraction and get.comb.shift).
Value
a list of simulated phylogenies as object of type phylo. Tips of subclades are named with the letters a, b, c, etc. while tips of backbones are named with letters z, y, etc. The empirical groups are sorted from the more recent to the older one (i.e. group a will be the more recent empirical subclade, etc.).
Author(s)
Nathan Mazet
References
Mazet, N., Morlon, H., Fabre, P., Condamine, F.L., (2023). Estimating clade‐specific diversification rates and palaeodiversity dynamics from reconstructed phylogenies. Methods in Ecology and in Evolution 14, 2575–2591. https://doi.org/10.1111/2041-210X.14195
See Also
Examples
# loading data
data("Cetacea")
data("taxo_cetacea")
data("shifts_cetacea")
# with the results from shifts.estimates()
# no shifts tested at genus level
taxo_cetacea_no_genus <- taxo_cetacea[names(taxo_cetacea) != "Genus"]
f_cetacea <- get.sampling.fractions(phylo = Cetacea,
data = taxo_cetacea_no_genus)
all_posteriors_cetacea <- simul.comb.shift(phylo = Cetacea,
sampling.fractions = f_cetacea,
shift.res = shifts_cetacea)