View source: R/update_variables.R
update_variables | R Documentation |
This function replaces new values with previous values of competing or miRNA counts.
update_variables(input_graph, current_counts)
input_graph |
The processed graph object. |
current_counts |
The additional df that provided by user. |
update_variables function provides updating edge variables to current values. If the microRNA or competing expression (or both) change (decreasing or increasing), this function switches the values that are found in a new dataset provided by user. But the current value dataset must be equal with initial dataset in terms of node name.
the graph object.
data('minsamp')
data('new_counts')
minsamp%>%
priming_graph(Competing_expression, miRNA_expression,
aff_factor = c(seed_type,energy), deg_factor = region)%>%
update_variables(new_counts)
#new_counts includes the current counts of nodes.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.