Denmark: labour force status, seasonally adjusted
Statistics Denmark (DST) seasonally adjusted labour force status: employed persons, ILO-unemployed persons and persons outside the labour force (thousands), plus the employment rate, ILO-unemployment rate and economic activity rate (per cent), quarterly from 2008Q1. Rows are employment status x quarter.
Qualité
Attribution
Statistics Denmark (StatBank Denmark). Source: Statistics Denmark – StatBank.dk. Data reproduced with source accreditation as required by Statistics Denmark.
Schéma
| Colonne | Type | Description |
|---|---|---|
| date | timestamp | Reference period of the observation, mapped to the first day of the period (StatBank 'time' variable; table AKU100K on StatBank Denmark). |
| series_id | string | Stable machine identifier: StatBank table code followed by the provider's variable value codes, pipe-separated. |
| series_label | string | Human-readable series label built from Statistics Denmark's own StatBank variable value texts. |
| unit | string | Unit of measurement as published by Statistics Denmark for table AKU100K (table-level unit, or gigajoules for the energy account). |
| value | float | Observed value (StatBank 'INDHOLD' content column, table AKU100K); '..' or blank entries are stored as missing. |
| employment_status_code | string | Statistics Denmark StatBank variable code (employment status). |
| employment_status_label | string | Statistics Denmark StatBank variable label (employment status). |
Exemple de lignes
| date | series_id | series_label | unit | value | employment_status_code | employment_status_label |
|---|---|---|---|---|---|---|
| 2008-01-01T00:00:00 | AKU100K|BESTOT | Employed | 1,000 people | 2751 | BESTOT | Employed |
| 2008-04-01T00:00:00 | AKU100K|BESTOT | Employed | 1,000 people | 2760 | BESTOT | Employed |
| 2008-07-01T00:00:00 | AKU100K|BESTOT | Employed | 1,000 people | 2757 | BESTOT | Employed |
| 2008-10-01T00:00:00 | AKU100K|BESTOT | Employed | 1,000 people | 2751 | BESTOT | Employed |
| 2009-01-01T00:00:00 | AKU100K|BESTOT | Employed | 1,000 people | 2712 | BESTOT | Employed |
Télécharger un échantillon
Téléchargez l'échantillon complet de ce jeu de données (lignes d'exemple, pas le jeu complet).
Utiliser avec un LLM
Dirigez n’importe quel LLM vers le point d’accès des métadonnées — la documentation ci-dessus est aussi lisible par machine (JSON-LD + Croissant).
cURL
curl "https://datazimuts.com/v1/datasets/dst/dst_labour_force" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/dst/dst_labour_force").json()
print(ds["title"], ds["rows"], "rows")
# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
print(row)Point d’accès API: https://datazimuts.com/v1/datasets/dst/dst_labour_force
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.