query-1d35049738d84a3ddd4ea9a00680df4d
Gráfico de área de libros por año de publicación y genero en narrativa, desde el año 2000Incluye datos de cualificadores
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Libros escritos por año y genero desde 2000
#defaultView:AreaChart
SELECT ?cid (STR(SAMPLE(?year)) AS ?year) (COUNT(*) AS ?count) ?genero WHERE {
?pid wdt:P31 wd:Q571; # libro
wdt:P50 ?autor; # autor
wdt:P136 ?cid; # genero
wdt:P577 ?_date_of_pub. # fecha de publicación
?cid wdt:P279* wd:Q1318295. # tipo de genero narrativo
?autor wdt:P27 wd:Q29 # nacionalidad autor España
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?cid rdfs:label ?genero. }
BIND ( YEAR(?_date_of_pub) AS ?year )
FILTER( ?year >= 2000 )
}
GROUP BY ?cid ?genero ?year