Description Usage Arguments Value Examples
Function to create custom queries with the '/landregistry/query endpoint'. All
necessary prefixes have to be included and output will be parsed from json to
dataframe. The most prefixes from land registry can be include with prefix_query
.
1 2 3 4 5 6 7 | sparql(
query,
endpoint = "http://landregistry.data.gov.uk/landregistry/query",
...
)
prefix_query(query)
|
query |
custom query. |
endpoint |
land registry's web service endpoint. |
... |
further arguments passed to |
Returns a tibble that has been parsed from json.
1 2 3 4 | custom_query <- "select * where {
<http://landregistry.data.gov.uk/data/ukhpi/region/newport/month/2013-10> ?property ?value
}"
sparql(prefix_query(custom_query))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.