unnest {mlr3misc}R Documentation

Unnest List Data Table Columns

Description

Transforms each element of a list columns into its own column, possibly by reference.

Usage

unnest(x, cols, prefix = NULL)

Arguments

x

:: data.table::data.table()
data.table::data.table() with columns to unnest.

cols

:: character()
Column names of list columns to operate on.

prefix

:: character(1)
String to prefix the new column names with.

Value

(data.table::data.table()).

Examples

x = data.table::data.table(
  id = 1:2,
  value = list(list(a = 1, b = 2), list(a = 2, b = 2))
)
print(x)
unnest(x, "value")

[Package mlr3misc version 0.1.3 Index]