powered by
Write a nested list into a directory structure
write_nested_list( nested_list, directory, save_as_object = FALSE, object_prefix = directory, extension = if (save_as_object) ".Rdata" else ".txt", ... )
A nested list.
Character string. Directory name to which to write the structure.
Logical. Save as R object?
Character. Prefix of R object. Only used if save_as_object = TRUE.
save_as_object = TRUE
Character. File extension. Default is ".txt".
Arguments passed to write.table
write.table
if (FALSE) { data("all_linkages_list_P1_subset") write_nested_list(nested_list = all_linkages_list_P1_subset, directory = "all_linkages_P1", sep="\t")}
Run the code above in your browser using DataLab