Learn R Programming

matsbyname (version 0.6.11)

getcolnames_byname: Gets column names

Description

Gets column names in a way that is amenable to use in chaining operations in a functional programming way

Usage

getcolnames_byname(a)

Value

Column names of m.

Arguments

a

The matrix or data frame from which column names are to be retrieved

Examples

Run this code
m <- matrix(c(1:6), nrow = 2, dimnames = list(paste0("i", 1:2), paste0("c", 1:3))) %>%
  setrowtype("Industries") %>% setcoltype("Commodities")
getcolnames_byname(m)
# This also works for lists
getcolnames_byname(list(m,m))
DF <- data.frame(m = I(list()))
DF[[1,"m"]] <- m
DF[[2,"m"]] <- m
getcolnames_byname(DF$m)

Run the code above in your browser using DataLab