Description Usage Arguments Author(s) Examples
Several functions to print and view info about the network enclosed in a coregnet object.
1 2 3 4 5 6 7 8 9 10 11 12 13 | 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>
1 2 3 4 5 6 7 8 9 | 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.