Skip to contents

Determines whether a leaf node contains an object that can be converted to a dataframe.

Usage

list_df(l)

Arguments

l

A list.

Value

A list.

Examples

if (FALSE) {
list_df(list(A = list(X = 1:10, Y = letters[1:10])))
list_df(list(A = 1:10, B = "Text", C = c("text", "text"))) # no conversion
}