R/simulation_plot.R
plotSimNetwork.Rd
Plots either the source network or the true differential network for all KDs performed in the simulation. KD nodes are coloured with their resulting differential networks coloured accordingly.
plotSimNetwork(
simulation,
what = c("source", "direct", "influence", "association"),
...
)
a list, storing data and results generated from simulations
a character, indicating which network to retrieve, 'source' (default), 'direct', 'influence' or 'association'
additional parameters to plot.igraph
a plot of the network
The direct, influence and association networks represent different levels of true differential networks. The direct network contains differential regulatory interactions present in the original network. The influence network includes upstream interactions and the association network includes non-causative differential interactions.
data(sim102)
plotSimNetwork(sim102)
plotSimNetwork(sim102, what = 'direct')
plotSimNetwork(sim102, what = 'influence')
plotSimNetwork(sim102, what = 'association')