Description Usage Arguments Value Author(s) References See Also Examples
These functions generate the probability distribution induced with a
given mutagenetic trees mixture model model
on the space of all possible
patterns of genetic events. The model
has to be specified. The
sampling mode and the parameters for the sampling times of the observed
input and output probabilities are optional. The number of genetic
events in the model
cannot exceed 30.
1 | distribution(model, sampling.mode, sampling.param, output.param)
|
model |
An |
sampling.mode |
A |
sampling.param |
A |
output.param |
A |
The function returns a dataframe
of all possible patterns with their
corresponding probabilities derived from the specified trees mixture
model. When the sampling mode and the sampling parameters (input and
output) are specified their values are printed out.
Jasmina Bogojeska
Learning multiple evolutionary pathways from cross-sectional data, N. Beerenwinkel et al.
RtreemixModel-class
, fit-methods
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Generate a random RtreemixModel object with 3 components.
mod <- generate(K = 3, no.events = 8, noise.tree = TRUE, prob = c(0.2, 0.8))
show(mod)
## See the probability distribution encoded by the model on the set of all possible patterns.
distr <- distribution(model = mod)
distr
## Get the probabilities.
distr$probability
## See the probability distribution encoded by the model on the set of all possible patterns
## calculated for given sampling mode, and corresponding input and output parameters.
distr1 <- distribution(model = mod, sampling.mode = "exponential", sampling.param = 1, output.param = 1)
distr1
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.