housekeep | R Documentation |
Title According to the coefficient of variation and the expression sum, the stable observation value is selected
housekeep(data, expcv = 1, exphigh = 1, explow = 0)
data |
must be a data.frame or matrix |
expcv |
a number range 0 to 1, Sets the maximum quantile value of the coefficient of variation |
exphigh |
a number range 0 to 1, Sets the maximum quantile value of expression sum |
explow |
a number range 0 to 1, Sets the minimum quantile value of expression sum |
data
y <- matrix( rpois(1000, lambda=5), nrow=200 )
n = dim(y)
colnames(y) = paste(rep("sample",n[[2]]),1:n[[2]])
rownames(y) = paste(rep("gene",n[[1]]),1:n[[1]])
y = as.data.frame(y)
#data_hk = housekeep(data, expcv = 0.3, exphigh = 0.8, explow = 0.4)
#head(data_hk)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.