print.CoDiNA: print.CoDiNA

Description Usage Arguments Value Author(s) Examples

View source: R/print.R

Description

Print on the screen the number of nodes and edges. To see the data.frame, call: data.frame().

Usage

1
2
## S3 method for class 'CoDiNA'
print(x, ...)

Arguments

x

Output from MakeDiffNet

...

Additional plotting parameters.

Value

Print on the screen the number of nodes and edges.

Author(s)

Deisy Morselli Gysi <deisy at bioinf.uni-leipzig.de>

Examples

1
2
3
4
5
6
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') )
print(DiffNet)

CoDiNA documentation built on July 15, 2020, 5:07 p.m.

Related to print.CoDiNA in CoDiNA...