Learn R Programming

splitstackshape (version 1.4.8)

listCol_l: Unlist a Column Stored as a List

Description

Unlists a column stored as a list into a long form.

Usage

listCol_l(inDT, listcol, drop = TRUE)

Arguments

inDT

The input dataset.

listcol

The name of the column stored as a list.

drop

Logical. Should the original column be dropped? Defaults to TRUE.

Value

A data.table.

See Also

listCol_w to flatten a list column into a "wide" format.

Examples

Run this code
# NOT RUN {
dat <- data.frame(A = 1:3, B = I(list(c(1, 2), c(1, 3, 5), c(4))))
listCol_l(dat, "B")

# }

Run the code above in your browser using DataLab