yamlDump | R Documentation |
Manually viewing a list object can be tricky where the natural print can be hard to work through. The config format *yaml* is increadibly dense and useful not only for writing configs but also viewing them which 'yamlDump' helps with.
yamlDump(x)
x |
An object that |
void
some_fancy_list <- list(complex = list(some_data = 1:3,
other_data = list(name = "Max")),
simple = "awesome overview")
yamlDump(some_fancy_list)
#complex:
# some_data:
# - 1
# - 2
# - 3
# other_data:
# name: Max
#simple: awesome overview
# If you got a character json you can also input it directly
# and the function will automatically convert it to a list
yamlDump('{"a":{"b":["1"]}}')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.