Description Usage Arguments Author(s) See Also Examples
The wrapper function incorporating all wrapper functions in statVisual.
1 |
type |
character. Indicate the functions to be called. It can take the following values: “BiAxisErrBar”, “Box”, “BoxROC”, “cv_glmnet_plot”, “Den”, “Dendro”, “ErrBar”, “Heat”, “Hist”, “ImpPlot”, “iprcomp”, “LinePlot”, “PCA_score”, “PVCA”, “statVisual”, “Volcano”, “XYscatter”. |
... |
input parameters for the functions specified by |
Wenfei Zhang <Wenfei.Zhang@sanofi.com>, Weiliang Qiu <Weiliang.Qiu@sanofi.com>, Xuan Lin <Xuan.Lin@sanofi.com>, Donghui Zhang <Donghui.Zhang@sanofi.com>
BiAxisErrBar
,
Box
,
BoxROC
,
cv_glmnet_plot
,
Den
,
Dendro
,
ErrBar
,
Heat
,
Hist
,
ImpPlot
,
iprcomp
,
LinePlot
,
PCA_score
,
PVCA
,
statVisual
,
Volcano
,
XYscatter
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | data(esSim)
print(esSim)
# expression data
dat = exprs(esSim)
print(dim(dat))
print(dat[1:2,])
# phenotype data
pDat = pData(esSim)
print(dim(pDat))
print(pDat[1:2,])
# feature data
fDat = fData(esSim)
print(dim(fDat))
print(fDat[1:2,])
# choose the first probe which is over-expressed in cases
pDat$probe1 = dat[1,]
# check histograms of probe 1 expression in cases and controls
print(table(pDat$grp, useNA = "ifany"))
statVisual(type = 'Hist',
data = pDat,
y = 'probe1',
group = 'grp')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.