powered by
The inverse operation to tibblify(). It converts a data frame or an object into a nested list.
tibblify()
untibblify(x, spec = NULL)
A nested list.
A data frame or an object.
Optional. A spec object which was used to create x.
x
x <- tibble( a = 1:2, b = tibble( x = c("a", "b"), y = c(1.5, 2.5) ) ) untibblify(x)
Run the code above in your browser using DataLab