query-4ae05caa5db4776a4d0f692e623daeb5
Scientific paper main subjects by general area TalkScientific paper main subjects by general area documentation, Fatameh tool for reference by URL(Q51993)Ebola hemorrhagic fever for discussion of referencing identifiers(Q18986800)Akram Mamazhonovich Makhmedov Wikidata statistics What Wikidata knows about subclasses of "library" Cheese chart
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:BubbleChart
SELECT ?area ?areaLabel ?count
WHERE
{
{
SELECT ?area (COUNT(?item) AS ?count)
WHERE {
?item wdt:P31 wd:Q13442814 .
?item wdt:P921 ?subject .
?subject wdt:P31 ?area .
}
GROUP BY ?area
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY DESC(?count)
LIMIT 100
Query found at
- https://www.wikidata.org/wiki/User:Charles_Matthews/Queries
- https://www.wikidata.org/wiki/User:Charles_Matthews/Training_supporting_links3
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?area"):::projected
v5("?count"):::projected
v2("?item")
v3("?subject")
c2(["wd:Q13442814"]):::iri
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P921"--> v3
v3 --"wdt:P31"--> v4
bind1[/"count(?item)"/]
v2 --o bind1
bind1 --as--o v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end