Learn R Programming

miscset (version 0.3.1)

enpaire: Create a Pairwise List from a Matrix

Description

Transform a matrix or dist object to a pairwise list.

Usage

enpaire(x, ...)

## S3 method for class 'default': enpaire(x, ...)

## S3 method for class 'dist': enpaire(x, upper = T, lower = T, ...)

## S3 method for class 'matrix': enpaire(x, upper = T, lower = T, ...)

Arguments

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

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