Description Usage Arguments Examples
View source: R/exported_functions.R
Write a nested list into a directory structure
1 2 3 | write_nested_list(nested_list, directory, save_as_object = FALSE,
object_prefix = directory, extension = if (save_as_object) ".Rdata" else
".txt", ...)
|
nested_list |
A nested list. |
directory |
Character string. Directory name to which to write the structure. |
save_as_object |
Logical. Save as R object? |
object_prefix |
Character. Prefix of R object. Only used if |
extension |
Character. File extension. Default is ".txt". |
... |
Arguments passed to |
1 2 3 4 | data("all_linkages_list_P1_subset")
write_nested_list(nested_list = all_linkages_list_P1_subset,
directory = "all_linkages_P1",
sep="\t")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.