| bricklayer_json_from_json | R Documentation |
Parse JSON into R objects (jsonlite's fromJSON, natively)
bricklayer_json_from_json(
txt,
simplifyVector = TRUE,
simplifyDataFrame = simplifyVector,
simplifyMatrix = simplifyVector,
flatten = FALSE,
bigint_as_char = FALSE,
simplify = NULL,
...
)
txt |
JSON text, a file path, or an http(s) URL. |
simplifyVector, simplifyDataFrame, simplifyMatrix, flatten |
as in jsonlite. |
bigint_as_char |
integers beyond 2^53 come back as strings. |
simplify |
legacy: |
... |
ignored, for call compatibility. |
an R object.
bricklayer_json_from_json('[{"a":1,"b":"x"},{"a":2,"b":"y"}]')
bricklayer_json_from_json('[[1,2],[3,4]]')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.