col_cv | R Documentation |
Title Calculating coefficient of variation
col_cv(data)
data |
must be a data.frame or matrix |
vcxtor
y <- matrix( rpois(1000, lambda=5), nrow=200 )
col_cv(y)
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)
col_cv(y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.