Description Usage Arguments References Examples
Vega-Lite is more lightweight than full Vega. However, the spec is flexible enough to support embedded data or using external sources that are in JSON, CSV or TSV format.
1  | 
vl | 
 a Vega-Lite object  | 
source | 
 you can specify a (fully qualified) URL or an existing
  | 
format_type | 
 if   | 
1 2 3 4 5 6 7 8 9 10 11  | dat <- jsonlite::fromJSON('[
    {"a": "A","b": 28}, {"a": "B","b": 55}, {"a": "C","b": 43},
    {"a": "D","b": 91}, {"a": "E","b": 81}, {"a": "F","b": 53},
    {"a": "G","b": 19}, {"a": "H","b": 87}, {"a": "I","b": 52}
  ]')
vegalite() %>%
  add_data(dat) %>%
  encode_x("a", "ordinal") %>%
  encode_y("b", "quantitative") %>%
  mark_bar()
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.