query-3dc357a963daa7190fa22a9011a8ad4b

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#defaultView:LineChart
#Requête permettant de dénombrer le nombre d'article scientifiques publié par décennie dans une LANGUE donnée
SELECT ?decade (count (distinct ?item) as ?count) where {
  ?item wdt:P31 wd:Q13442814 ; wdt:P577 ?p577 ; wdt:P407 wd:Q188 .
  BIND(SUBSTR(CONCAT(STR(ROUND(YEAR(?p577)/10)*10),'/01/01'),1,4) AS ?decade)
} 
GROUP BY ?decade

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count") v3("?decade"):::projected v1("?item"):::projected v2("?p577") c2(["wd:Q13442814"]):::iri c5(["wd:Q188"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P577"--> v2 v1 --"wdt:P407"--> c5 bind0[/"substring(concat(str(numeric-round(year-from-dateTime(?p577) / '10^^xsd:integer') * '10^^xsd:integer'),'/01/01'),'1^^xsd:integer','4^^xsd:integer')"/] v2 --o bind0 bind0 --as--o v3 bind2[/"count(?item)"/] v1 --o bind2 bind2 --as--o v4