| from_automerge | R Documentation |
Converts an Automerge document to a standard R list. This is equivalent to
as.list.am_doc().
from_automerge(doc)
doc |
An Automerge document |
Named list with document contents
doc <- am_create()
doc$name <- "Alice"
doc$age <- 30L
from_automerge(doc) # list(name = "Alice", age = 30L)
am_close(doc)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.