flip.object-class | R Documentation |
The class flip.object is the output of a call to flip
, flipMix
, npc
, flip.adjust
etc.
The following are functions to extract and manipulate relevant information from
a flip.object
.
## S4 method for signature 'flip.object'
show(object)
summary(object, ...)
## S4 method for signature 'flip.object'
summary(object, star.signif = TRUE, only.p.leq = NULL, ...)
## S4 method for signature 'flip.object'
dim(x)
## S4 method for signature 'flip.object'
x[i]
## S4 method for signature 'flip.object'
x[[i]]
## S4 method for signature 'flip.object'
length(x)
## S4 method for signature 'flip.object'
names(x)
## S4 replacement method for signature 'flip.object'
names(x) <- value
## S4 method for signature 'flip.object'
sort(x, decreasing = FALSE)
## S4 method for signature 'flip.object'
hist(x, ...)
## S4 method for signature 'flip.object'
plot(x, y, ...)
object |
a flip-object |
... |
additional arguments to be passed |
star.signif |
If |
only.p.leq |
Shows only tests with a p-value lower than |
x |
a |
i |
indices specifying elements to extract or replace. Indices are |
value |
|
decreasing |
logical. Should the sort be increasing or decreasing? |
y |
not used. |
Y=matrix(rnorm(50),10,5)
colnames(Y)=LETTERS[1:5]
Y[,1:2]=Y[,1:2] +2
res = flip(Y)
res
summary(res)
sort(res)
names(res)
length(res)
dim(res)
res=res[2:3]
res
hist(res)
plot(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.