| sortj | R Documentation | 
Sort and related
sortj(.data, ...)
sortj_(.data, ..., .dots)
reverse(.data)
.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  | 
# 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
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.