Ireland: seasonally adjusted monthly unemployment
Central Statistics Office (Ireland) monthly unemployment series: seasonally adjusted number of unemployed persons (thousands) and unemployment rate (%), by age group (15-24, 25-74, 15-74) and sex, from January 1998. Rows are statistic x month x age group x sex.
irelandunemploymentlabour-marketcso
Qualité
100
Attribution
Central Statistics Office, Ireland (CSO)
Schéma
| Colonne | Type | Description |
|---|---|---|
| date | timestamp | First day of the observation period (month, quarter, or year) from the provider's time dimension. |
| series_id | string | Composite key: PxStat matrix code | statistic code | time code | breakdown dimension codes. |
| series_label | string | Human-readable label from the provider's own dimension labels: statistic, then breakdown values. |
| value | float | Observation value in the series unit (see the unit column). |
| unit | string | Unit of the observation, taken from the provider's own CSV export UNIT column for the statistic. |
| stat_code | string | PxStat statistic code within the matrix. |
| stat_label | string | Provider's statistic name (e.g. 'Residential Property Price Index'). |
| time_code | string | Provider's raw time code (YYYYMM, YYYYQ, or YYYY). |
| age_group_code | string | Provider code for Age Group. |
| age_group_label | string | Provider's Age Group label. |
| sex_code | string | Provider code for Sex. |
| sex_label | string | Provider's Sex label. |
Exemple de lignes
| date | series_id | series_label | value | unit | stat_code | stat_label | time_code | age_group_code | age_group_label | sex_code | sex_label |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 1998-01-01T00:00:00 | MUM01|MUM01C01|199801|310|- | Seasonally Adjusted Monthly Unemployment — 15 - 24 years — Both sexes | 55 | Thousand | MUM01C01 | Seasonally Adjusted Monthly Unemployment | 199801 | 310 | 15 - 24 years | - | Both sexes |
| 1998-01-01T00:00:00 | MUM01|MUM01C01|199801|310|1 | Seasonally Adjusted Monthly Unemployment — 15 - 24 years — Male | 31.3 | Thousand | MUM01C01 | Seasonally Adjusted Monthly Unemployment | 199801 | 310 | 15 - 24 years | 1 | Male |
| 1998-01-01T00:00:00 | MUM01|MUM01C01|199801|310|2 | Seasonally Adjusted Monthly Unemployment — 15 - 24 years — Female | 23.7 | Thousand | MUM01C01 | Seasonally Adjusted Monthly Unemployment | 199801 | 310 | 15 - 24 years | 2 | Female |
| 1998-01-01T00:00:00 | MUM01|MUM01C01|199801|316|- | Seasonally Adjusted Monthly Unemployment — 15 - 74 years — Both sexes | 151 | Thousand | MUM01C01 | Seasonally Adjusted Monthly Unemployment | 199801 | 316 | 15 - 74 years | - | Both sexes |
| 1998-01-01T00:00:00 | MUM01|MUM01C01|199801|316|1 | Seasonally Adjusted Monthly Unemployment — 15 - 74 years — Male | 86.7 | Thousand | MUM01C01 | Seasonally Adjusted Monthly Unemployment | 199801 | 316 | 15 - 74 years | 1 | Male |
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/cso/cso_monthly_unemployment" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/cso/cso_monthly_unemployment").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/cso/cso_monthly_unemployment
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.