| listOflists2Dt {XNAString} | R Documentation |
Save list of lists as data.table
listOflists2Dt(list_of_lists)
list_of_lists |
list of lists that will be saved as data.table. |
data.table
nested_list <- list(
list(base = c("T"), sugar = c("G")),
list(base = c("U"), sugar = c("G"))
)
listOflists2Dt(nested_list)