fg_extract_raw {flowGraph} | R Documentation |
Returns a flowGraph object with only the count
feature
and meta data. This function clears all other features and
feature summaries to save space.
fg_extract_raw(fg)
fg |
flowGraph object. |
flowGraph object with all summary statistics and feature values removed except for the node count feature.
no_cores <- 1 data(fg_data_pos30) fg <- flowGraph(fg_data_pos30$count, class=fg_data_pos30$meta$class, no_cores=no_cores) fg <- fg_extract_raw(fg) show(fg)