summary.CoDiNA {CoDiNA} | R Documentation |
summary.CoDiNA
Description
summary of the CoDiNA network.
Usage
## S3 method for class 'CoDiNA'
summary(object, ...)
Arguments
object |
Output from MakeDiffNet |
... |
Additional plotting parameters. |
Value
Returns a summary describing the network.
Author(s)
Deisy Morselli Gysi <deisy at bioinf.uni-leipzig.de>
Examples
Nodes = LETTERS[1:10]
Net1 = data.frame(Node.1 = sample(Nodes) , Node.2 = sample(Nodes), wTO = runif(10,-1,1))
Net2 = data.frame(Node.1 = sample(Nodes) , Node.2 = sample(Nodes), wTO = runif(10,-1,1))
Net3 = data.frame(Node.1 = sample(Nodes) , Node.2 = sample(Nodes), wTO = runif(10,-1,1))
DiffNet = MakeDiffNet (Data = list(Net1,Net2,Net3), Code = c('Net1', 'Net2', 'Net3') )
summary(DiffNet)
[Package CoDiNA version 1.1.2 Index]