summary {CoRegNet} | R Documentation |
Several functions to print and view info about the network enclosed in a coregnet object.
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)
network |
a coregnet network object. |
object |
a coregnet network object. |
x |
a coregnet network object. |
... |
unused argument |
Remy Nicolle <remy.c.nicolle AT gmail.com>
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)