describe | R Documentation |
Explain a query
describe(.data)
.data |
(list) input, using higher level interface |
## Not run: elastic::connect() shakespeare <- system.file("examples", "shakespeare_data.json", package = "elastic") invisible(elastic::docs_bulk(shakespeare)) # index("shakespeare") %>% range( speech_number <= 5 ) %>% describe index("shakespeare") %>% bool(must_not = list(term=list(speaker="KING HENRY IV"))) %>% describe geoshape <- system.file("examples", "gbif_geoshape.json", package = "elastic") invisible(elastic::docs_bulk(geoshape)) index("geoshape") %>% geoshape(field = "location", type = "envelope", coordinates = list(c(-30, 50), c(30, 0))) %>% describe() ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.