View source: R/DatasetGenerator.R
set_generator_edges | R Documentation |
Add edge weights to a generator
set_generator_edges(generator, f_t_w_list, by = "labels")
generator |
a generator |
f_t_w_list |
a list of triplets (from, to, list), the triplets must not be nested in the list. For example list("A","B",0.3, "B", "C", 0.2) is a valid input. |
by |
"labels" or "samples" to use gene labels or sample labels as references for edge identifiers. |
the generator with the modified edges (invalid edges are ignored)
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 ))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.