Description Usage Arguments Value Methods (by class) See Also Examples
Execute a query on data.world.
| 1 2 3 4 5 6 7 | 
| qry | Query object of type qry_sql or qry_sparql. | 
| ... | either a single parameter  | 
Query results as a data frame.
qry_sql: Execute a SQL query on data.world.
qry_sparql: Execute a SPARQL query on data.world.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Not run: 
  sql_stmt <- data.world::qry_sql("SELECT * FROM Tables")
  query_results_df <- data.world::query(
    sql_stmt, "jonloyens", "an-intro-to-dataworld-dataset")
## End(Not run)
## Not run: 
  sparql_stmt <- data.world::qry_sparql("SELECT ?s ?p ?o
                                         WHERE {
                                           ?s ?p ?o.
                                         }")
  query_results_df <- data.world::query(
    sparql_stmt, "jonloyens", "an-intro-to-dataworld-dataset")
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.