View source: R/01_flowgraph_accessors.R
fg_get_graph | R Documentation |
Retrieves a graph list from a given flowGraph object.
fg_get_graph(fg)
fg |
flowGraph object. |
A list containing two data frames (v
and ]codee)
from the graph
slot of the given flowGraph
object containing
information on the cell populations phenotype nodes and edges representing
relation between cell populations.
flowGraph-class
fg_plot
ggdf
plot_gr
no_cores <- 1
data(fg_data_pos30)
fg <- flowGraph(fg_data_pos30$count, class=fg_data_pos30$meta$class,
prop=FALSE, specenr=FALSE,
no_cores=no_cores)
gr <- fg_get_graph(fg)
head(gr$v)
head(gr$e)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.