| untibblify | R Documentation |
Convert a data frame or an object into a nested list. This is the inverse
operation of tibblify(). See vignette("supported-structures") for a
description of objects recognized by tibblify.
untibblify(x, spec = get_spec(x))
x |
( |
spec |
( |
A nested list.
x <- tibble(
a = 1:2,
b = tibble(
x = c("a", "b"),
y = c(1.5, 2.5)
)
)
untibblify(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.