next
previous
items

Data table via SPARQL

Trends in absolute expenditure in household consumption (COICOP) categories per capita

Data table via SPARQL Published 15 Apr 2014 Last modified 19 Apr 2016

Download this dataset

Dataset preview

(Live Query)

category date geo value
"Alcoholic beverages, tobacco and narcotics" "1995"^^<http://www.w3.org/2001/XMLSchema#int> "Austria" "100"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Alcoholic beverages, tobacco and narcotics" "1996"^^<http://www.w3.org/2001/XMLSchema#int> "Austria" "97.4"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Alcoholic beverages, tobacco and narcotics" "1997"^^<http://www.w3.org/2001/XMLSchema#int> "Austria" "99.7"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Alcoholic beverages, tobacco and narcotics" "1998"^^<http://www.w3.org/2001/XMLSchema#int> "Austria" "104.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Alcoholic beverages, tobacco and narcotics" "1999"^^<http://www.w3.org/2001/XMLSchema#int> "Austria" "106.6"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Alcoholic beverages, tobacco and narcotics" "2000"^^<http://www.w3.org/2001/XMLSchema#int> "Austria" "106.2"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Alcoholic beverages, tobacco and narcotics" "2001"^^<http://www.w3.org/2001/XMLSchema#int> "Austria" "105.4"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Alcoholic beverages, tobacco and narcotics" "2002"^^<http://www.w3.org/2001/XMLSchema#int> "Austria" "107.2"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Alcoholic beverages, tobacco and narcotics" "2003"^^<http://www.w3.org/2001/XMLSchema#int> "Austria" "105.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Alcoholic beverages, tobacco and narcotics" "2004"^^<http://www.w3.org/2001/XMLSchema#int> "Austria" "105.6"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 7465 rows in 0.449 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/trends-in-absolute-expenditure-in-2/daviz.json

For system integrators

The following info can be used by a system developer / database administrator in order to retrieve this dataset programmatically over the web using a SPARQL client.

Are you new to Linked Data technology? visit http://linkeddata.org



semantic.eea.europa.eu/sparql

PREFIX sdmx-measure: <http://purl.org/linked-data/sdmx/2009/measure#> 
PREFIX sdmx-dimension: <http://purl.org/linked-data/sdmx/2009/dimension#> 
PREFIX property: <http://rdfdata.eionet.europa.eu/eurostat/property#> 
PREFIX rdf-schema: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX unit: <http://rdfdata.eionet.europa.eu/eurostat/dic/unit#>
PREFIX geo: <http://rdfdata.eionet.europa.eu/eurostat/dic/geo#>
PREFIX coicop: <http://rdfdata.eionet.europa.eu/eurostat/dic/coicop#>


SELECT 
?category
year(?date) as ?date
?ugeo as ?geo
(round((sum(?value)/sum(?value_idx))*1000))/10.0 as ?value

WHERE {
{  
  GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/nama_co3_k.rdf.gz> 
  {
  _:nama_co3_k sdmx-dimension:timePeriod ?date . FILTER (year(?date) >= 1995)
  _:nama_co3_k property:unit unit:MIO_EUR_CLV2000 .
  _:nama_co3_k property:coicop ?coicop . FILTER (?coicop in (coicop:TOTAL, coicop:CP01, coicop:CP02, coicop:CP03, coicop:CP04, coicop:CP05, coicop:CP06, coicop:CP07, coicop:CP08, coicop:CP09, coicop:CP10, coicop:CP11, coicop:CP12))
  _:nama_co3_k sdmx-measure:obsValue ?obsValue .
  _:nama_co3_k property:geo ?geo .
  _:nama_co3_k sdmx-measure:obsValue ?value .

  _:nama_co3_k_idx sdmx-dimension:timePeriod ?date_idx FILTER (year(?date_idx) = 1995)
  _:nama_co3_k_idx property:unit unit:MIO_EUR_CLV2000 .
  _:nama_co3_k_idx property:coicop ?coicop . FILTER (?coicop in (coicop:TOTAL, coicop:CP01, coicop:CP02, coicop:CP03, coicop:CP04, coicop:CP05, coicop:CP06, coicop:CP07, coicop:CP08, coicop:CP09, coicop:CP10, coicop:CP11, coicop:CP12))
  _:nama_co3_k_idx sdmx-measure:obsValue ?obsValue_idx .

  _:nama_co3_k_idx property:geo ?geo .
  _:nama_co3_k_idx sdmx-measure:obsValue ?value_idx .

  } 
  ?geo rdf-schema:label ?ugeo .
  ?coicop rdf-schema:label ?category .
 }
}
GROUP BY ?ugeo ?category ?date 
ORDER BY ?ugeo ?category ?date


Permalinks

Document Actions