View source: R/pull_triangle.R
pull_triangle | R Documentation |
Returns the lower or the upper triangular part of a (correlation) matrix.
pull_triangle(x, triangle = c("lower", "upper"), diagonal = FALSE) pull_upper_triangle(x, diagonal = FALSE) pull_lower_triangle(x, diagonal = FALSE)
x |
a (correlation) matrix |
triangle |
the triangle to pull. Allowed values are one of "upper" and "lower". |
diagonal |
logical. Default is FALSE. If TRUE, the matrix diagonal is included. |
an object of class cor_mat_tri
, which is a data frame
pull_triangle()
: returns either the lower or upper triangular part of a matrix.
pull_upper_triangle()
: returns an object of class upper_tri
, which
is a data frame containing the upper triangular part of a matrix.
pull_lower_triangle()
: returns an object of class lower_tri
, which
is a data frame containing the lower triangular part of a matrix.
replace_triangle()
# Data preparation #:::::::::::::::::::::::::::::::::::::::::: mydata <- mtcars %>% select(mpg, disp, hp, drat, wt, qsec) head(mydata, 3) # Compute correlation matrix and pull triangles #:::::::::::::::::::::::::::::::::::::::::: # Correlation matrix cor.mat <- cor_mat(mydata) cor.mat # Pull lower triangular part cor.mat %>% pull_lower_triangle() # Pull upper triangular part cor.mat %>% pull_upper_triangle()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.