anynames: Get the useful names of a data structure

Description Usage Arguments Details Value Author(s) See Also Examples

Description

This function consolidataes data sets within lists and two dimensional data. Like anylength the idea is to unify the accessors for various data structures with a single common interface.

Usage

1

Arguments

...

Abstract function controlled by futile.paradigm

Details

Depending on the type of structure utilized in code, one needs to call either names or colnames to get information related to the data sets within the structure. The use of two separate functions can cause errors and slows development time as data structures passed from intermediate functions may change over time, resulting in a broken interface.

By providing a thin layer over underlying accessors, this function attempts to expedite development and add a bit of polymorphism to the semantics of names. The explicit assumption is that data sets in two dimensional structures are organized by column, as this is compatible with time-series objects such as zoo and xts.

Value

The names or colnames of an object.

Author(s)

Brian Lee Yung Rowe

See Also

anylength

Examples

1
2
3
4
5
6
7
8
9
  m <- matrix(c(1,2,3,4,5,6), ncol=2)
  anynames(m) <- c('a','b')
  anynames(m)

  v <- c(a=1,b=2,c=3,d=4,e=5)
  anynames(v)

  l <- list(a=1,b=2,c=3,d=4,e=5)
  anynames(l)

futile.any documentation built on May 1, 2019, 9:26 p.m.