dfcols.list: Convert the Columns of a 'data.frame' to a 'list'

Description Usage Arguments Author(s) Examples

View source: R/dfcols.list.R

Description

Sometimes, it is useful to have the columns of a data.frame as separate list items or vectors. unlist is useful for creating a single vector, but not for creating multiple vectors. The dfcols.list function is a simple convenience function that allows for such transformations.

Usage

1
dfcols.list(data, vectorize = TRUE)

Arguments

data

The input data.frame

vectorize

Logical. Should the function return a list of single-column data.frames, or a simple vector of values? Defaults to TRUE.

Author(s)

Ananda Mahto

Examples

1
2
3
dat <- data.frame(A = c(1:2), B = c(3:4), C = c(5:6))
dfcols.list(dat)
dfcols.list(dat, vectorize = FALSE)

mrdwab/mrdwabmisc documentation built on May 23, 2019, 7:15 a.m.