Description Usage Arguments Value Author(s) References Examples
Get lower triangle of a square matrix as a numeric vector such that row-by-row, picking elements in the order 2,1;3,1;3,2;4,1,...
1  | lower.triangle(mat)
 | 
mat | 
 data matrix  | 
lower triangle as vector
Contact: Leo Lahti microbiome-admin@googlegroups.com
See citation('microbiome')
1 2  | mat <- rbind(c(1,2,3), c(4,5,6), c(7,8,9))
  vec <- lower.triangle(mat)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.