rowlist: Convert a table to a list of rows

View source: R/subset.egor.R

rowlistR Documentation

Convert a table to a list of rows

Description

A convenience function converting a data.frame() or a tibble().

Usage

rowlist(x)

Arguments

x

a data.frame(), a tibble(), or some other table data structure backed by a list() of columns.

Value

A list() of length nrow(x), with each element itself a named list() containing the elements in the corresponding row.

Examples


library(tibble)
(df <- tibble(x=2:1, y=list(list(1:3), list(3:4))))
rowlist(df)


tilltnet/egor documentation built on Feb. 12, 2024, 3:21 a.m.