rankPerOut | R Documentation |
Ranks markers in the order of decreasing percentage of outlying events.
rankPerOut(dat.dys, marker.proc.list = NULL, dys.sig.thr.upp)
dat.dys |
samples' distances to regression line (i.e., dysregulation) on the scatter plots. |
marker.proc.list |
character array, the row names of the data to be processed for outlier analyses. |
dys.sig.thr.upp |
the dysregulation score threshold to elucidate/mark significantly dysregulated outlier events. |
markers rank-ordered by the percentage of outliers over the samples.
the percentages of outliers corresponding to ranked markers.
set.seed(1)
dat = setNames(as.data.frame(matrix(runif(10*10),10,10),
row.names = paste('marker',1:10,sep='')), paste('sample',1:10,sep=''))
dat.imp = artImpute(dat, ku=6)
dat.dys = dysReg(dat, dat.imp)[[1]]
result = rankPerOut(dat.dys, dys.sig.thr.upp = .25)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.