make_long | R Documentation |
Helps users to easily convert a two-way table (genotype vs environment) to a
'long' format data. The data in mat
will be gathered into three
columns. The row names will compose the first column. The column names will
compose the second column and the third column will contain the data that
fills the two-way table.
make_long(mat, gen_in = "rows")
mat |
A two-way table. It must be a matrix or a data.frame with rownames. |
gen_in |
Where are the genotypes? Defaults to |
A tibble with three columns: GEN (genotype), ENV (environment), and Y (response) variable.
Tiago Olivoto tiagoolivoto@gmail.com
library(metan) set.seed(1) mat <- matrix(rnorm(9, 2530, 350), ncol = 3) colnames(mat) <- paste("E", 1:3, sep = "") rownames(mat) <- paste("G", 1:3, sep = "") make_long(mat) gen_cols <- t(mat) make_long(gen_cols, gen_in = "cols")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.