vars {jqr} | R Documentation |
Variables
Description
Variables
Usage
vars(.data, ...)
vars_(.data, ..., .dots)
Arguments
.data |
input. This can be JSON input, or an object of class
|
... |
Comma separated list of unquoted variable names |
.dots |
Used to work around non-standard evaluation |
dots |
dots |
Examples
x <- '{
"posts": [
{"title": "Frist psot", "author": "anon"},
{"title": "A well-written article", "author": "person1"}
],
"realnames": {
"anon": "Anonymous Coward",
"person1": "Person McPherson"
}
}'
x %>% dotstr(posts[])
x %>% dotstr(posts[]) %>% string
x %>% vars(realnames = names) %>% dotstr(posts[]) %>%
build_object(title, author = "$names[.author]")
[Package jqr version 1.3.3 Index]