| finalize_generator | R Documentation |
Checks if a generator can be normalized so that it actually is a Markov Chain
finalize_generator(generator)
generator |
a generator |
A generator with edge weights that respect DTMC definition
require(dplyr)
example_dataset() %>%
make_generator_stub() %>%
set_generator_edges(
list(
"D", "A, D", 1 ,
"A", "A, D", 1 ,
"A, D", "A, C, D", 1 ,
"A, D", "A, B, D", 1 ,
"Clonal", "D", 1 ,
"Clonal", "A", 1 ,
"D", "D", 1 ,
"A", "A", 1 ,
"A, D", "A, D", 1 ,
"A, C, D", "A, C, D", 1 ,
"A, B, D", "A, B, D", 1 ,
"Clonal", "Clonal", 1
)) %>%
finalize_generator
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.