| select | R Documentation |
SELECT
select(.data, ..., distinct = FALSE) select_(.data, ..., .dots, distinct = FALSE)
.data |
input. This can be JSON input, or an object of class
|
... |
Comma separated list of unquoted variable names |
distinct |
(logical) whether to use distinct in select statement.
Default: |
.dots |
Used to work around non-standard evaluation |
dots |
dots |
## Not run:
### SELECT * WHERE { ?s ?p ?o } OFFSET 100 LIMIT 10
### query = sparql.select.where([:s, :p, :o]).offset(100).limit(10)
sparql_dsl("http://dbpedia.org/sparql") %>%
select() %>%
where(s, p, o) %>%
limit(10)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.