I think this does the trick
new.pp <- unlist(pp,recursive=FALSE)
Tidyverse approach:
library(purrr)
new.pp <- flatten(pp)
I think this does the trick
new.pp <- unlist(pp,recursive=FALSE)
Tidyverse approach:
library(purrr)
new.pp <- flatten(pp)