⚠️There's a newer version (1.0.0) of this package. Take me there.

WikidataQueryServiceR

This is an R wrapper for the Wikidata Query Service (WDQS) which provides a way for tools to query Wikidata via SPARQL (see the beta at https://query.wikidata.org/). It is written in and for R, and was inspired by Oliver Keyes' WikipediR and WikidataR packages.

Author: Mikhail Popov (Wikimedia Foundation) License: MIT Status: Active

Installation

install.packages("WikidataQueryServiceR")

To install the development version:

# install.packages(c("devtools", "httr", "dplyr", "jsonlite"))
devtools::install_github("bearloga/WikidataQueryServiceR")

Example

In this example, we find an "instance of" (P31) "film" (Q11424) that has the label "The Cabin in the Woods" (Q45394), get its genres (P136), and then use WDQS label service to return the genre labels.

sparql_query <- 'PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wikibase: <http://wikiba.se/ontology#>
SELECT DISTINCT ?genre ?genreLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
  ?film wdt:P31 wd:Q11424.
  ?film rdfs:label "The Cabin in the Woods"@en.
  ?film wdt:P136 ?genre.
}'
WikidataQueryServiceR::query_wikidata(sparql_query)
# 5 rows were returned by WDQS
genregenreLabel
http://www.wikidata.org/entity/Q200092horror film
http://www.wikidata.org/entity/Q471839science fiction film
http://www.wikidata.org/entity/Q224700comedy horror
http://www.wikidata.org/entity/Q859369comedy-drama
http://www.wikidata.org/entity/Q1342372monster film

For more example SPARQL queries, see this page on Wikidata.

query_wikidata() can accept multiple queries, returning a (potentially named) list of data frames. If the vector of SPARQL queries is named, the results will inherit those names.

Extracting and running example SPARQL queries

This package does not rely on the rvest and urltools R packages for core functionality, but if the user has them installed then there is a bonus function for scraping the examples page and extracting SPARQL queries.

# install.packages(c("rvest", "urltools"))
sparql_query <- scrape_example(c("Cats", "Horses", "Largest cities with female mayor"))
cat(sparql_query[["Largest cities with female mayor"]])
# Largest cities with female mayor
#added before 2016-10
#TEMPLATE={"template":"Largest ?c with ?sex head of government","variables":{"?sex":{"query":" SELECT ?id WHERE { ?id wdt:P31 wd:Q48264 .  } "},"?c":{"query":"SELECT DISTINCT ?id WHERE {  ?c wdt:P31 ?id.  ?c p:P6 ?mayor. }"} } }
SELECT DISTINCT ?city ?cityLabel ?mayor ?mayorLabel 
WHERE 
{
  BIND(wd:Q6581072 AS ?sex)
  BIND(wd:Q515 AS ?c)

	?city wdt:P31/wdt:P279* ?c .  # find instances of subclasses of city
	?city p:P6 ?statement .            # with a P6 (head of goverment) statement
	?statement ps:P6 ?mayor .          # ... that has the value ?mayor
	?mayor wdt:P21 ?sex .       # ... where the ?mayor has P21 (sex or gender) female
	FILTER NOT EXISTS { ?statement pq:P582 ?x }  # ... but the statement has no P582 (end date) qualifier
	 
	# Now select the population value of the ?city
	# (wdt: properties use only statements of "preferred" rank if any, usually meaning "current population")
	?city wdt:P1082 ?population .
	# Optionally, find English labels for city and mayor:
	SERVICE wikibase:label {
		bd:serviceParam wikibase:language "en" .
	}
}
ORDER BY DESC(?population)
LIMIT 10

Now we can run all three scraped SPARQL queries and get back three data.frames:

results <- query_wikidata(sparql_query)
# 113 rows were returned by WDQS
# 6677 rows were returned by WDQS
# 10 rows were returned by WDQS
results$`Largest cities with female mayor`
citycityLabelmayormayorLabel
http://www.wikidata.org/entity/Q1490Tokyohttp://www.wikidata.org/entity/Q261703Yuriko Koike
http://www.wikidata.org/entity/Q1156Mumbaihttp://www.wikidata.org/entity/Q18218029Snehal Ambekar
http://www.wikidata.org/entity/Q38283Yokohamahttp://www.wikidata.org/entity/Q529363Fumiko Hayashi
http://www.wikidata.org/entity/Q2807Madridhttp://www.wikidata.org/entity/Q19592761Manuela Carmena
http://www.wikidata.org/entity/Q11462Surabayahttp://www.wikidata.org/entity/Q12522317Tri Rismaharini
http://www.wikidata.org/entity/Q220Romehttp://www.wikidata.org/entity/Q23766020Virginia Raggi
http://www.wikidata.org/entity/Q90Parishttp://www.wikidata.org/entity/Q2851133Anne Hidalgo
http://www.wikidata.org/entity/Q16555Houstonhttp://www.wikidata.org/entity/Q213847Annise Parker
http://www.wikidata.org/entity/Q1563Havanahttp://www.wikidata.org/entity/Q6774124Marta Hernández Romero
http://www.wikidata.org/entity/Q19660Bucharesthttp://www.wikidata.org/entity/Q16593781Gabriela Fireaa

Additional Information

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

Copy Link

Version

Down Chevron

Install

install.packages('WikidataQueryServiceR')

Monthly Downloads

25,807

Version

0.1.1

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

April 28th, 2017

Functions in WikidataQueryServiceR (0.1.1)