Learn R Programming

CoRegNet (version 1.8.2)

summary: Summaries and info coregnet

Description

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

Usage

summary(object,...) "show"(object) "dim"(x) "length"(x) "print"(x) "coregnetToDataframe"(network) "coregnetToList"(network)

Arguments

network
a coregnet network object.
object
a coregnet network object.
x
a coregnet network object.
...
unused argument

Examples

Run this code
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)

Run the code above in your browser using DataLab