sortj {jqr} | R Documentation |
Sort and related
Description
Sort and related
Usage
sortj(.data, ...)
sortj_(.data, ..., .dots)
reverse(.data)
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
# sort
'[8,3,null,6]' %>% sortj
'[{"foo":4, "bar":10}, {"foo":3, "bar":100}, {"foo":2, "bar":1}]' %>%
sortj(foo)
# reverse order
'[1,2,3,4]' %>% reverse
# many JSON inputs
'[{"foo":7}, {"foo":4}] [{"foo":300}, {"foo":1}] [{"foo":2}, {"foo":1}]' %>%
sortj(foo)
'[1,2,3,4] [10,20,30,40] [100,200,300,4000]' %>%
reverse
[Package jqr version 1.3.3 Index]