sfsmisc (version 1.1-4)

empty.dimnames: Empty Dimnames of an Array

Description

Remove all dimension names from an array for compact printing.

Usage

empty.dimnames(a)

Arguments

a

an array, i.e., as special case a matrix.

Value

Returns a with its dimnames replaced by empty character strings.

See Also

unname removes the dimnames.

Examples

Run this code
# NOT RUN {
empty.dimnames(diag(5)) # looks much nicer

(a <- matrix(-9:10, 4,5))
empty.dimnames(a) # nicer, right?
# }

Run the code above in your browser using DataCamp Workspace