Can I unnest a list column directly into n columns?
The list can be assumed to regular, with all elements being of equal length.
If instead of a lis
Maybe this:
cbind(df1[, "gr"], do.call(rbind, df1$values))