This function uses the plot.igraph package to plot a network of nodes. The nodes are positioned according to the specified coordinates given by the layout parameter and the colors are derived using the diff values and the get_node_colors function. The color of each node indicates how much more inhibited or active that node is, when comparing the average model classified in the 'good' category vs the average 'bad' one.

plot_avg_state_diff_graph(net, diff, layout = NULL, title)

Arguments

net

igraph graph object

diff

numeric vector. Every value is in the [-1,1] interval and represents the average activity difference of each node. The node names have to be specified in the names attribute of the given vector. For example, diff could be the result of using the function get_avg_activity_diff_based_on_tp_predictions.

layout

a (nx2) numeric matrix of x-y coordinates (2 columns) for each of the nodes (n) in the net igraph object. If NULL, we use the default layout provided by layout_nicely.

title

string. The title of the igraph plot

See also

Examples

topology.file = system.file("extdata", "example.sif", package = "emba", mustWork = TRUE) net = construct_network(topology.file) diff = c(-0.95,-0.05,0.46,0.39,-0.04,0.72,-0.12,-0.51,-0.86,-0.80) names(diff) = c("A","C","B","D","W","I","E","J","F","K") plot_avg_state_diff_graph(net, diff, title = "TEST")
#> [1] TRUE