t_dat | R Documentation |
Title
t_dat(data)
data |
a data.frame need to transpose the columns and rows |
data.frame with the pvalue and qvalue
test = matrix(rnorm(200), 20, 10)
test[1:10, seq(1, 10, 2)] = test[1:10, seq(1, 10, 2)] + 3
test[11:20, seq(2, 10, 2)] = test[11:20, seq(2, 10, 2)] + 2
test[15:20, seq(2, 10, 2)] = test[15:20, seq(2, 10, 2)] + 4
colnames(test) = paste("Test", 1:10, sep = "")
rownames(test) = paste("Gene", 1:20, sep = "")
t_dat(test)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.