View source: R/plotNetworkWiring.R
plotNetworkWiring | R Documentation |
Plots the wiring of genes (i.e. the gene dependencies) of a synchronous or probabilistic Boolean network. The nodes of the graph are the genes, and the directed edges show the dependencies of the genes. This requires the igraph package.
plotNetworkWiring(network,
layout = layout.fruchterman.reingold,
plotIt = TRUE, ...)
network |
A network structure of class |
layout |
A layouting function that determines the placement of the nodes in the graph. Please refer to the |
plotIt |
If this is true, a plot is generated. Otherwise, only an object of class |
... |
Further graphical parameters to be passed to |
This function uses the plot.igraph
function from the igraph package. The plots are customizeable using the ...
argument. For details on possible parameters, please refer to igraph.plotting
.
Returns an invisible object of class igraph
containing the wiring graph.
loadNetwork
, generateRandomNKNetwork
, reconstructNetwork
, plotStateGraph
, igraph.plotting
## Not run:
# load example data
data(cellcycle)
# plot wiring graph
plotNetworkWiring(cellcycle)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.