Learn R Programming

miscset (version 1.0.0)

enpaire: Create a Pairwise List from a Matrix

Description

Transform a matrix or dist object to a pairwise list.

Usage

enpaire(x, ...)
"enpaire"(x, ...)
"enpaire"(x, upper = T, lower = T, ...)
"enpaire"(x, upper = T, lower = T, ...)

Arguments

x
Object of class matrix.
...
Arguments passed to methods.
upper
Logical, return values from upper triangle.
lower
Logical, return values from lower triangle.

Value

Returns a data.frame. The first and second column represent the dimension names for a value in x. The following columns contain the values for the upper or lower triangle.

See Also

squarematrix

Examples

Run this code
#

m <- matrix(letters[1:9], 3, 3, dimnames = list(1:3,1:3))
enpaire(m)
enpaire(m, lower = FALSE)

#

Run the code above in your browser using DataLab