I would like to save to disk a tibble
that has list-columns (for later use inside R only). Ideally I'd like a fast binary format like feather
, however, it doesn't seem to support list cols:
test <- tibble(a= list(c(1,2), c(3,4)))
feather::write_feather(test, 'test.csv')
Error in writeFeather(x, path) : Not implemented: a is a list
I was expecting the methods in the readr
package to be able to handle this, but none of the ones I've tried seem to be able to.
How do I do this?