summary {CoRegNet}R Documentation

Summaries and info coregnet

Description

Several functions to print and view info about the network enclosed in a coregnet object.

Usage

summary(object,...)
## S4 method for signature 'coregnet'
show(object)
## S4 method for signature 'coregnet'
dim(x)
## S4 method for signature 'coregnet'
length(x)
## S4 method for signature 'coregnet'
print(x)
## S4 method for signature 'coregnet'
coregnetToDataframe(network)
## S4 method for signature 'coregnet'
coregnetToList(network)

Arguments

network

a coregnet network object.

object

a coregnet network object.

x

a coregnet network object.

...

unused argument

Author(s)

Remy Nicolle <remy.c.nicolle AT gmail.com>

Examples

regs=sample(letters,7)
grn=data.frame("Target"= LETTERS ,"activators"= sample(rep(regs,4))[1:26],"repressors"= sample(rep(regs,4))[1:26],stringsAsFactors=FALSE)
co=coregnet(grn)
print(co)
length(co)
dim(co)
co
coregnetToDataframe(co)
coregnetToList(co)

[Package CoRegNet version 1.24.0 Index]