diff --git a/statvar_imports/denmark_demographics/README.md b/statvar_imports/denmark_demographics/README.md new file mode 100644 index 0000000000..91142bdfd0 --- /dev/null +++ b/statvar_imports/denmark_demographics/README.md @@ -0,0 +1,68 @@ +# Statistics Denmark Demographics Dataset +## Overview +This dataset contains demographic statistics for the population of Denmark, sourced from Statistics Denmark. It includes two primary datasets covering quarterly and annual population breakdowns across various dimensions like geography (regions and municipalities), sex, age, and marital status. + +The import covers: +- **Population (Quarterly):** Population count by region, marital status, age, and sex at the first day of each quarter (Table FOLK1A). +- **Population (Annual):** Population count by sex and age groups. + +Type of place: Country + +## Data Source +**Source URL:** +- Main Portal: https://www.statbank.dk/statbank5a/default.asp?w=1396 +- Specific Table (FOLK1A): https://www.statbank.dk/FOLK1A + +**Provenance Description:** +The data is provided by Statistics Denmark, the central authority for Danish statistics. The population figures are derived from the Central Person Register (CPR) and reflect the population residing in Denmark on the first day of the period. + +## How To Download Input Data +To download the data manually: +1. Go to the [StatBank Denmark Portal](https://www.statbank.dk/statbank5a/default.asp?w=1396). +2. Browse or search for the desired population tables. For quarterly demographics, search for table **FOLK1A** (Population at the first day of the quarter). +3. Select the desired variables: + - **Region:** All Denmark. + - **Marital Status:** Total, Never married, Married/separated, Widowed, Divorced. + - **Age:** Individual ages or age groups. + - **Sex:** Men, Women. + - **Time:** Quarters. +4. Click "Show table" and then "Download" to save as CSV. + +## Processing Instructions +To process the Denmark Demographics data and generate statistical variables, use the following command: + +**For Data Run (Quarterly Run)** +```python ../../tools/statvar_importer/stat_var_processor.py \ + --input_data='gs://unresolved_mcf/country/denmark/input_files/population_quarterly_region_time_marital_status_input.csv' \ + --pv_map='population_quartely_region_time_marital_status_pvmap.csv' \ + --output_path='population_quartely_region_time_marital_status_output' \ + --config_file='denmark_demographics_metadata.csv' \ + --existing_statvar_mcf=gs://unresolved_mcf/scripts/statvar/stat_vars.mcf +``` +**For Data Run (Annual Run)** +```python ../../tools/statvar_importer/stat_var_processor.py \ + --input_data='gs://unresolved_mcf/country/denmark/input_files/population_sex_age_time_input.csv' \ + --pv_map='population_sex_age_time_pvmap.csv' \ + --output_path='population_sex_age_time_output' \ + --config_file='denmark_demographics_metadata.csv' \ + --existing_statvar_mcf=gs://unresolved_mcf/scripts/statvar/stat_vars.mcf +``` + +This generates the following output files for the first time run: +- output.csv +- output_stat_vars_schema.mcf +- output_stat_vars.mcf +- output.tmcf + +## Data Quality Checks and Validation +Validation is performed using the Data Commons import tool: + +```bash +java -jar datacommons-import-tool-jar-with-dependencies.jar lint \ + output_stat_vars_schema.mcf \ + output.csv \ + output.tmcf \ + output_stat_vars.mcf +``` + +The tool generates a `report.json`, `summary_report.csv`, and `summary_report.html` which can be used to identify errors or warnings in the generated data. diff --git a/statvar_imports/denmark_demographics/denmark_demographics_metadata.csv b/statvar_imports/denmark_demographics/denmark_demographics_metadata.csv new file mode 100644 index 0000000000..41f8f31e37 --- /dev/null +++ b/statvar_imports/denmark_demographics/denmark_demographics_metadata.csv @@ -0,0 +1,3 @@ +parameter,value +output_columns,"observationDate,value,observationAbout,variableMeasured" +dc_api_root,https://api.datacommons.org diff --git a/statvar_imports/denmark_demographics/download_population_quarterly_region_time_marital_status.py b/statvar_imports/denmark_demographics/download_population_quarterly_region_time_marital_status.py new file mode 100644 index 0000000000..c4811c9492 --- /dev/null +++ b/statvar_imports/denmark_demographics/download_population_quarterly_region_time_marital_status.py @@ -0,0 +1,111 @@ +# Copyright 2026 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the 'License'); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an 'AS IS' BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +This script downloads quarterly population data from the Statistics Denmark API (Statbank). +It fetches demographic data including region, sex, age, and marital status, +processes the JSON-STAT response into a flat structure, and saves it as a CSV. +""" + +import pandas as pd +import itertools +import os +from absl import logging +from statbank_utils import find_key_recursive, fetch_statbank_api + +logging.set_verbosity(logging.INFO) + +# --- CONFIGURATION --- +# url: API endpoint for Statistics Denmark. +# output_dir: Local path for the generated CSV. +# table_id: FOLK1A (Population at the first day of the quarter). +url = "https://api.statbank.dk/v1/data" +output_dir = "./input_files/" +table_id = "FOLK1A" + +def main(): + """ + Orchestrates the data extraction, transformation, and loading (ETL) process. + + 1. Fetches data via a POST request using fetch_statbank_api. + 2. Parses the nested JSON-STAT structure into dimensions and values. + 3. Reconstructs the dataset using a Cartesian product of labels. + 4. Cleanses and standardizes labels for downstream use. + """ + logging.info("--- Starting Statistics Denmark data extraction ---") + + if not os.path.exists(output_dir): + os.makedirs(output_dir) + logging.info(f"Created output directory: {output_dir}") + + # Define the API query payload + # '*' is a wildcard requesting all sub-categories for the given variable. + payload = { + "table": table_id, + "format": "JSONSTAT", + "lang": "en", + "variables": [ + {"code": "OMRÅDE", "values": ["000"]}, + {"code": "KØN", "values": ["*"]}, + {"code": "ALDER", "values": ["*"]}, + {"code": "CIVILSTAND", "values": ["*"]}, + {"code": "Tid", "values": ["*"]} + ] + } + + try: + response = fetch_statbank_api(url, table_id, payload) + full_data = response.json() + + dims = find_key_recursive(full_data, 'dimension') + vals = find_key_recursive(full_data, 'value') + + if dims and vals: + logging.info("Successfully retrieved dimensions and values. Processing...") + ids = find_key_recursive(full_data, 'id') or list(dims.keys()) + role = find_key_recursive(full_data, 'role') or {} + metric_ids = role.get('metric', []) + + # Extract readable labels for each dimension to prepare for product calculation + dim_list, col_names = [], [] + for d_id in ids: + if d_id in metric_ids or d_id.lower() in ['indhold', 'contents']: + continue + labels = dims[d_id]['category']['label'] + dim_list.append(list(labels.values())) + col_names.append(d_id) + + # JSON-STAT values are flat; we align them by creating a Cartesian product + # of all dimension labels. + df = pd.DataFrame(list(itertools.product(*dim_list)), columns=col_names) + df['Value'] = vals + + # Standardize Danish column names to English + df = df.rename(columns={ + 'OMRÅDE': 'Region', 'ALDER': 'Age', + 'CIVILSTAND': 'Marital_Status', 'Tid': 'Quarter', 'KØN': 'Sex' + }) + + df.loc[df['Sex'] == 'Total', 'Sex'] = 'Gender_Total' + df.loc[df['Marital_Status'] == 'Total', 'Marital_Status'] = 'Marital_Total' + + filename = 'population_quarterly_region_time_marital_status_input.csv' + save_path = os.path.join(output_dir, filename) + df.to_csv(save_path, index=False) + logging.info(f"Execution successful! Saved {len(df)} rows to {save_path}") + except Exception as e: + logging.fatal(f"An unexpected error occurred: {e}") + +if __name__ == "__main__": + main() diff --git a/statvar_imports/denmark_demographics/download_population_sex_age_time.py b/statvar_imports/denmark_demographics/download_population_sex_age_time.py new file mode 100644 index 0000000000..bbbfea113a --- /dev/null +++ b/statvar_imports/denmark_demographics/download_population_sex_age_time.py @@ -0,0 +1,113 @@ +# Copyright 2026 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the 'License'); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an 'AS IS' BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +This script extracts population data by sex, age, and year from the Statistics +Denmark API using the BULK format. It performs dynamic sorting on demographic +categories (ensuring 'Total' values appear first) and pivots the data to a +wide-format time series before saving to CSV. +""" + +import pandas as pd +import os +import re +from io import StringIO +from absl import logging +from statbank_utils import fetch_statbank_api + +# Set logging verbosity +logging.set_verbosity(logging.INFO) + +# --- CONFIGURATION --- +url = "https://api.statbank.dk/v1/data" +output_dir = "./input_files/" +table_id = "BEFOLK2" + +def get_age_rank(age_str): + """Assigns a numerical rank to age strings to facilitate correct sorting.""" + age_str = str(age_str).lower() + if 'total' in age_str: + return -1 + nums = re.findall(r'\d+', age_str) + return int(nums[0]) if nums else 999 + +def main(): + """Main orchestration function to fetch, sort, pivot, and save the population data.""" + logging.info("--- Starting Statistics Denmark BEFOLK2 data extraction ---") + + if not os.path.exists(output_dir): + os.makedirs(output_dir) + logging.info(f"Created output directory: {output_dir}") + + payload = { + "table": table_id, + "format": "BULK", + "lang": "en", + "variables": [ + {"code": "KØN", "values": ["*"]}, + {"code": "ALDER", "values": ["*"]}, + {"code": "Tid", "values": ["*"]} + ] + } + + try: + # Use modularized download logic + response = fetch_statbank_api(url, table_id, payload) + + if response.status_code == 200: + # Process the semicolon-separated bulk response + df = pd.read_csv(StringIO(response.text), sep=';') + sex_col, age_col, time_col, val_col = df.columns + + # RESTORED: Printing the total number of rows processed + logging.info(f"Data received. Processing {len(df)} rows.") + + # 1. DYNAMIC SEX SORTING + sex_order = sorted(df[sex_col].unique(), key=lambda x: 0 if 'total' in str(x).lower() else 1) + df[sex_col] = pd.Categorical(df[sex_col], categories=sex_order, ordered=True) + + # 2. DYNAMIC AGE SORTING + df['age_sort'] = df[age_col].apply(get_age_rank) + + # 3. DYNAMIC YEAR SORTING + df[time_col] = df[time_col].apply(lambda x: int(re.search(r'\d+', str(x)).group())) + + # Sort and Pivot + df = df.sort_values([sex_col, 'age_sort', time_col]) + df_pivot = df.pivot_table( + index=[sex_col, age_col], + columns=time_col, + values=val_col, + aggfunc='first', + sort=False + ).reset_index() + + df_pivot = df_pivot.rename(columns={'ALDER': 'Age', 'KØN': 'Sex'}) + + # --- SAVE --- + filename = "population_sex_age_time_input.csv" + save_path = os.path.join(output_dir, filename) + df_pivot.to_csv(save_path, index=False, encoding='utf-8-sig') + logging.info(f"File saved successfully: {save_path}") + + else: + logging.error(f"Request failed with status code: {response.status_code}") + + except Exception as e: + logging.fatal(f"An unexpected error occurred during processing: {e}") + + logging.info("--- Script execution finished ---") + +if __name__ == "__main__": + main() diff --git a/statvar_imports/denmark_demographics/manifest.json b/statvar_imports/denmark_demographics/manifest.json new file mode 100644 index 0000000000..2d992dcb37 --- /dev/null +++ b/statvar_imports/denmark_demographics/manifest.json @@ -0,0 +1,29 @@ +{ + "import_specifications": [ + { + "import_name": "Denmark_Demographics", + "curator_emails": [ + "support@datacommons.org" + ], + "provenance_url": "https://www.statbank.dk/statbank5a/default.asp?w=1280", + "provenance_description": "Population data for Denmark from Statbank", + "scripts": [ + "download_population_quarterly_region_time_marital_status.py", + "download_population_sex_age_time.py", + "../../tools/statvar_importer/stat_var_processor.py --input_data=./input_files/population_quarterly_region_time_marital_status_input.csv --pv_map=./population_quarterly_region_time_marital_status_pvmap.csv --config_file=./denmark_demographics_metadata.csv --output_path=./output/population_quarterly_region_time_marital_status_output --existing_statvar_mcf=gs://unresolved_mcf/scripts/statvar/stat_vars.mcf", + "../../tools/statvar_importer/stat_var_processor.py --input_data=./input_files/population_sex_age_time_input.csv --pv_map=./population_sex_age_time_pvmap.csv --config_file=./denmark_demographics_metadata.csv --output_path=./output/population_sex_age_time_output --existing_statvar_mcf=gs://unresolved_mcf/scripts/statvar/stat_vars.mcf" + ], + "import_inputs": [ + { + "template_mcf": "output/population_sex_age_time_output.tmcf", + "cleaned_csv": "output/*_output.csv" + } + ], + "source_files": [ + "./input_files/*.csv" + ], + "user_script_timeout": 36000, + "cron_schedule": "0 10 20 2,5,8,11 *" + } + ] +} diff --git a/statvar_imports/denmark_demographics/population_quarterly_region_time_marital_status_pvmap.csv b/statvar_imports/denmark_demographics/population_quarterly_region_time_marital_status_pvmap.csv new file mode 100644 index 0000000000..abca7a10d6 --- /dev/null +++ b/statvar_imports/denmark_demographics/population_quarterly_region_time_marital_status_pvmap.csv @@ -0,0 +1,230 @@ +key,p1,v1,p2,v2,p3,v3,p4,v4 +Value,value,{Number},measuredProperty,count,populationType,Person,statType,measuredValue +Men,gender,Male,#Header,gender,,,, +Women,gender,Female,#Header,gender,,,, +Gender_Total,gender,"""""",#Header,gender,,,, +Never married,maritalStatus,NeverMarried,#Header,maritalStatus,,,, +Married/separated,maritalStatus,MarriedOrSeparated,#Header,maritalStatus,,,, +Widowed,maritalStatus,Widowed,#Header,maritalStatus,,,, +Divorced,maritalStatus,Divorced,#Header,maritalStatus,,,, +Marital_Total,maritalStatus,"""""",#Header,maritalStatus,,,, +2008Q1,observationDate,2008-03,#Header,observationDate,,,, +2008Q2,observationDate,2008-06,#Header,observationDate,,,, +2008Q3,observationDate,2008-09,#Header,observationDate,,,, +2008Q4,observationDate,2008-12,#Header,observationDate,,,, +2009Q1,observationDate,2009-03,#Header,observationDate,,,, +2009Q2,observationDate,2009-06,#Header,observationDate,,,, +2009Q3,observationDate,2009-09,#Header,observationDate,,,, +2009Q4,observationDate,2009-12,#Header,observationDate,,,, +2010Q1,observationDate,2010-03,#Header,observationDate,,,, +2010Q2,observationDate,2010-06,#Header,observationDate,,,, +2010Q3,observationDate,2010-09,#Header,observationDate,,,, +2010Q4,observationDate,2010-12,#Header,observationDate,,,, +2011Q1,observationDate,2011-03,#Header,observationDate,,,, +2011Q2,observationDate,2011-06,#Header,observationDate,,,, +2011Q3,observationDate,2011-09,#Header,observationDate,,,, +2011Q4,observationDate,2011-12,#Header,observationDate,,,, +2012Q1,observationDate,2012-03,#Header,observationDate,,,, +2012Q2,observationDate,2012-06,#Header,observationDate,,,, +2012Q3,observationDate,2012-09,#Header,observationDate,,,, +2012Q4,observationDate,2012-12,#Header,observationDate,,,, +2013Q1,observationDate,2013-03,#Header,observationDate,,,, +2013Q2,observationDate,2013-06,#Header,observationDate,,,, +2013Q3,observationDate,2013-09,#Header,observationDate,,,, +2013Q4,observationDate,2013-12,#Header,observationDate,,,, +2014Q1,observationDate,2014-03,#Header,observationDate,,,, +2014Q2,observationDate,2014-06,#Header,observationDate,,,, +2014Q3,observationDate,2014-09,#Header,observationDate,,,, +2014Q4,observationDate,2014-12,#Header,observationDate,,,, +2015Q1,observationDate,2015-03,#Header,observationDate,,,, +2015Q2,observationDate,2015-06,#Header,observationDate,,,, +2015Q3,observationDate,2015-09,#Header,observationDate,,,, +2015Q4,observationDate,2015-12,#Header,observationDate,,,, +2016Q1,observationDate,2016-03,#Header,observationDate,,,, +2016Q2,observationDate,2016-06,#Header,observationDate,,,, +2016Q3,observationDate,2016-09,#Header,observationDate,,,, +2016Q4,observationDate,2016-12,#Header,observationDate,,,, +2017Q1,observationDate,2017-03,#Header,observationDate,,,, +2017Q2,observationDate,2017-06,#Header,observationDate,,,, +2017Q3,observationDate,2017-09,#Header,observationDate,,,, +2017Q4,observationDate,2017-12,#Header,observationDate,,,, +2018Q1,observationDate,2018-03,#Header,observationDate,,,, +2018Q2,observationDate,2018-06,#Header,observationDate,,,, +2018Q3,observationDate,2018-09,#Header,observationDate,,,, +2018Q4,observationDate,2018-12,#Header,observationDate,,,, +2019Q1,observationDate,2019-03,#Header,observationDate,,,, +2019Q2,observationDate,2019-06,#Header,observationDate,,,, +2019Q3,observationDate,2019-09,#Header,observationDate,,,, +2019Q4,observationDate,2019-12,#Header,observationDate,,,, +2020Q1,observationDate,2020-03,#Header,observationDate,,,, +2020Q2,observationDate,2020-06,#Header,observationDate,,,, +2020Q3,observationDate,2020-09,#Header,observationDate,,,, +2020Q4,observationDate,2020-12,#Header,observationDate,,,, +2021Q1,observationDate,2021-03,#Header,observationDate,,,, +2021Q2,observationDate,2021-06,#Header,observationDate,,,, +2021Q3,observationDate,2021-09,#Header,observationDate,,,, +2021Q4,observationDate,2021-12,#Header,observationDate,,,, +2022Q1,observationDate,2022-03,#Header,observationDate,,,, +2022Q2,observationDate,2022-06,#Header,observationDate,,,, +2022Q3,observationDate,2022-09,#Header,observationDate,,,, +2022Q4,observationDate,2022-12,#Header,observationDate,,,, +2023Q1,observationDate,2023-03,#Header,observationDate,,,, +2023Q2,observationDate,2023-06,#Header,observationDate,,,, +2023Q3,observationDate,2023-09,#Header,observationDate,,,, +2023Q4,observationDate,2023-12,#Header,observationDate,,,, +2024Q1,observationDate,2024-03,#Header,observationDate,,,, +2024Q2,observationDate,2024-06,#Header,observationDate,,,, +2024Q3,observationDate,2024-09,#Header,observationDate,,,, +2024Q4,observationDate,2024-12,#Header,observationDate,,,, +2025Q1,observationDate,2025-03,#Header,observationDate,,,, +2025Q2,observationDate,2025-06,#Header,observationDate,,,, +2025Q3,observationDate,2025-09,#Header,observationDate,,,, +2025Q4,observationDate,2025-12,#Header,observationDate,,,, +2026Q1,observationDate,2026-03,#Header,observationDate,,,, +2026Q2,observationDate,2026-06,#Header,observationDate,,,, +2026Q3,observationDate,2026-09,#Header,observationDate,,,, +2026Q4,observationDate,2026-12,#Header,observationDate,,,, +2027Q1,observationDate,2027-03,#Header,observationDate,,,, +2027Q2,observationDate,2027-06,#Header,observationDate,,,, +2027Q3,observationDate,2027-09,#Header,observationDate,,,, +2027Q4,observationDate,2027-12,#Header,observationDate,,,, +2028Q1,observationDate,2028-03,#Header,observationDate,,,, +2028Q2,observationDate,2028-06,#Header,observationDate,,,, +2028Q3,observationDate,2028-09,#Header,observationDate,,,, +2028Q4,observationDate,2028-12,#Header,observationDate,,,, +2029Q1,observationDate,2029-03,#Header,observationDate,,,, +2029Q2,observationDate,2029-06,#Header,observationDate,,,, +2029Q3,observationDate,2029-09,#Header,observationDate,,,, +2029Q4,observationDate,2029-12,#Header,observationDate,,,, +2030Q1,observationDate,2030-03,#Header,observationDate,,,, +2030Q2,observationDate,2030-06,#Header,observationDate,,,, +2030Q3,observationDate,2030-09,#Header,observationDate,,,, +2030Q4,observationDate,2030-12,#Header,observationDate,,,, +All Denmark,observationAbout,country/DNK,#Header,observationAbout,,,, +"Age, total",age,"""""",,,,,, +0 years,age,Years0,,,,,, +1 year,age,Years1,,,,,, +2 years,age,Years2,,,,,, +3 years,age,Years3,,,,,, +4 years,age,Years4,,,,,, +5 years,age,Years5,,,,,, +6 years,age,Years6,,,,,, +7 years,age,Years7,,,,,, +8 years,age,Years8,,,,,, +9 years,age,Years9,,,,,, +10 years,age,Years10,,,,,, +11 years,age,Years11,,,,,, +12 years,age,Years12,,,,,, +13 years,age,Years13,,,,,, +14 years,age,Years14,,,,,, +15 years,age,Years15,,,,,, +16 years,age,Years16,,,,,, +17 years,age,Years17,,,,,, +18 years,age,Years18,,,,,, +19 years,age,Years19,,,,,, +20 years,age,Years20,,,,,, +21 years,age,Years21,,,,,, +22 years,age,Years22,,,,,, +23 years,age,Years23,,,,,, +24 years,age,Years24,,,,,, +25 years,age,Years25,,,,,, +26 years,age,Years26,,,,,, +27 years,age,Years27,,,,,, +28 years,age,Years28,,,,,, +29 years,age,Years29,,,,,, +30 years,age,Years30,,,,,, +31 years,age,Years31,,,,,, +32 years,age,Years32,,,,,, +33 years,age,Years33,,,,,, +34 years,age,Years34,,,,,, +35 years,age,Years35,,,,,, +36 years,age,Years36,,,,,, +37 years,age,Years37,,,,,, +38 years,age,Years38,,,,,, +39 years,age,Years39,,,,,, +40 years,age,Years40,,,,,, +41 years,age,Years41,,,,,, +42 years,age,Years42,,,,,, +43 years,age,Years43,,,,,, +44 years,age,Years44,,,,,, +45 years,age,Years45,,,,,, +46 years,age,Years46,,,,,, +47 years,age,Years47,,,,,, +48 years,age,Years48,,,,,, +49 years,age,Years49,,,,,, +50 years,age,Years50,,,,,, +51 years,age,Years51,,,,,, +52 years,age,Years52,,,,,, +53 years,age,Years53,,,,,, +54 years,age,Years54,,,,,, +55 years,age,Years55,,,,,, +56 years,age,Years56,,,,,, +57 years,age,Years57,,,,,, +58 years,age,Years58,,,,,, +59 years,age,Years59,,,,,, +60 years,age,Years60,,,,,, +61 years,age,Years61,,,,,, +62 years,age,Years62,,,,,, +63 years,age,Years63,,,,,, +64 years,age,Years64,,,,,, +65 years,age,Years65,,,,,, +66 years,age,Years66,,,,,, +67 years,age,Years67,,,,,, +68 years,age,Years68,,,,,, +69 years,age,Years69,,,,,, +70 years,age,Years70,,,,,, +71 years,age,Years71,,,,,, +72 years,age,Years72,,,,,, +73 years,age,Years73,,,,,, +74 years,age,Years74,,,,,, +75 years,age,Years75,,,,,, +76 years,age,Years76,,,,,, +77 years,age,Years77,,,,,, +78 years,age,Years78,,,,,, +79 years,age,Years79,,,,,, +80 years,age,Years80,,,,,, +81 years,age,Years81,,,,,, +82 years,age,Years82,,,,,, +83 years,age,Years83,,,,,, +84 years,age,Years84,,,,,, +85 years,age,Years85,,,,,, +86 years,age,Years86,,,,,, +87 years,age,Years87,,,,,, +88 years,age,Years88,,,,,, +89 years,age,Years89,,,,,, +90 years,age,Years90,,,,,, +91 years,age,Years91,,,,,, +92 years,age,Years92,,,,,, +93 years,age,Years93,,,,,, +94 years,age,Years94,,,,,, +95 years,age,Years95,,,,,, +96 years,age,Years96,,,,,, +97 years,age,Years97,,,,,, +98 years,age,Years98,,,,,, +99 years,age,Years99,,,,,, +100 years,age,Years100,,,,,, +101 years,age,Years101,,,,,, +102 years,age,Years102,,,,,, +103 years,age,Years103,,,,,, +104 years,age,Years104,,,,,, +105 years,age,Years105,,,,,, +106 years,#ignore,ignore,,,,,, +107 years,#ignore,ignore,,,,,, +108 years,#ignore,ignore,,,,,, +109 years,#ignore,ignore,,,,,, +110 years,#ignore,ignore,,,,,, +111 years,#ignore,ignore,,,,,, +112 years,#ignore,ignore,,,,,, +113 years,#ignore,ignore,,,,,, +114 years,#ignore,ignore,,,,,, +115 years,#ignore,ignore,,,,,, +116 years,#ignore,ignore,,,,,, +117 years,#ignore,ignore,,,,,, +118 years,#ignore,ignore,,,,,, +119 years,#ignore,ignore,,,,,, +120 years,#ignore,ignore,,,,,, +121 years,#ignore,ignore,,,,,, +122 years,#ignore,ignore,,,,,, +123 years,#ignore,ignore,,,,,, +124 years,#ignore,ignore,,,,,, +125 years,#ignore,ignore,,,,,, diff --git a/statvar_imports/denmark_demographics/population_sex_age_time_pvmap.csv b/statvar_imports/denmark_demographics/population_sex_age_time_pvmap.csv new file mode 100644 index 0000000000..84ced59c9f --- /dev/null +++ b/statvar_imports/denmark_demographics/population_sex_age_time_pvmap.csv @@ -0,0 +1,173 @@ +key,p1,v1,p2,v2,p3,v3,p4,v4,p5,v5 +Total,gender,"""""",observationAbout,country/DNK,measuredProperty,count,populationType,Person,#Header,gender +Men,gender,Male,observationAbout,country/DNK,measuredProperty,count,populationType,Person,#Header,gender +Women,gender,Female,observationAbout,country/DNK,measuredProperty,count,populationType,Person,#Header,gender +"Age, total",age,"""""",,,,,,,, +0-4 years,age,[0 4 Years],,,,,,,, +5-9 years,age,[5 9 Years],,,,,,,, +10-14 years,age,[10 14 Years],,,,,,,, +15-19 years,age,[15 19 Years],,,,,,,, +20-24 years,age,[20 24 Years],,,,,,,, +25-29 years,age,[25 29 Years],,,,,,,, +30-34 years,age,[30 34 Years],,,,,,,, +35-39 years,age,[35 39 Years],,,,,,,, +40-44 years,age,[40 44 Years],,,,,,,, +45-49 years,age,[45 49 Years],,,,,,,, +50-54 years,age,[50 54 Years],,,,,,,, +55-59 years,age,[55 59 Years],,,,,,,, +60-64 years,age,[60 64 Years],,,,,,,, +65-69 years,age,[65 69 Years],,,,,,,, +70-74 years,age,[70 74 Years],,,,,,,, +75-79 years,age,[75 79 Years],,,,,,,, +80-84 years,age,[80 84 Years],,,,,,,, +85 years and over,age,[85 - Years],,,,,,,, +1901,observationDate,1901,value,{Number},,,,,, +1902,observationDate,1902,value,{Number},,,,,, +1903,observationDate,1903,value,{Number},,,,,, +1904,observationDate,1904,value,{Number},,,,,, +1905,observationDate,1905,value,{Number},,,,,, +1906,observationDate,1906,value,{Number},,,,,, +1907,observationDate,1907,value,{Number},,,,,, +1908,observationDate,1908,value,{Number},,,,,, +1909,observationDate,1909,value,{Number},,,,,, +1910,observationDate,1910,value,{Number},,,,,, +1911,observationDate,1911,value,{Number},,,,,, +1912,observationDate,1912,value,{Number},,,,,, +1913,observationDate,1913,value,{Number},,,,,, +1914,observationDate,1914,value,{Number},,,,,, +1915,observationDate,1915,value,{Number},,,,,, +1916,observationDate,1916,value,{Number},,,,,, +1917,observationDate,1917,value,{Number},,,,,, +1918,observationDate,1918,value,{Number},,,,,, +1919,observationDate,1919,value,{Number},,,,,, +1920,observationDate,1920,value,{Number},,,,,, +1921,observationDate,1921,value,{Number},,,,,, +1922,observationDate,1922,value,{Number},,,,,, +1923,observationDate,1923,value,{Number},,,,,, +1924,observationDate,1924,value,{Number},,,,,, +1925,observationDate,1925,value,{Number},,,,,, +1926,observationDate,1926,value,{Number},,,,,, +1927,observationDate,1927,value,{Number},,,,,, +1928,observationDate,1928,value,{Number},,,,,, +1929,observationDate,1929,value,{Number},,,,,, +1930,observationDate,1930,value,{Number},,,,,, +1931,observationDate,1931,value,{Number},,,,,, +1932,observationDate,1932,value,{Number},,,,,, +1933,observationDate,1933,value,{Number},,,,,, +1934,observationDate,1934,value,{Number},,,,,, +1935,observationDate,1935,value,{Number},,,,,, +1936,observationDate,1936,value,{Number},,,,,, +1937,observationDate,1937,value,{Number},,,,,, +1938,observationDate,1938,value,{Number},,,,,, +1939,observationDate,1939,value,{Number},,,,,, +1940,observationDate,1940,value,{Number},,,,,, +1941,observationDate,1941,value,{Number},,,,,, +1942,observationDate,1942,value,{Number},,,,,, +1943,observationDate,1943,value,{Number},,,,,, +1944,observationDate,1944,value,{Number},,,,,, +1945,observationDate,1945,value,{Number},,,,,, +1946,observationDate,1946,value,{Number},,,,,, +1947,observationDate,1947,value,{Number},,,,,, +1948,observationDate,1948,value,{Number},,,,,, +1949,observationDate,1949,value,{Number},,,,,, +1950,observationDate,1950,value,{Number},,,,,, +1951,observationDate,1951,value,{Number},,,,,, +1952,observationDate,1952,value,{Number},,,,,, +1953,observationDate,1953,value,{Number},,,,,, +1954,observationDate,1954,value,{Number},,,,,, +1955,observationDate,1955,value,{Number},,,,,, +1956,observationDate,1956,value,{Number},,,,,, +1957,observationDate,1957,value,{Number},,,,,, +1958,observationDate,1958,value,{Number},,,,,, +1959,observationDate,1959,value,{Number},,,,,, +1960,observationDate,1960,value,{Number},,,,,, +1961,observationDate,1961,value,{Number},,,,,, +1962,observationDate,1962,value,{Number},,,,,, +1963,observationDate,1963,value,{Number},,,,,, +1964,observationDate,1964,value,{Number},,,,,, +1965,observationDate,1965,value,{Number},,,,,, +1966,observationDate,1966,value,{Number},,,,,, +1967,observationDate,1967,value,{Number},,,,,, +1968,observationDate,1968,value,{Number},,,,,, +1969,observationDate,1969,value,{Number},,,,,, +1970,observationDate,1970,value,{Number},,,,,, +1971,observationDate,1971,value,{Number},,,,,, +1972,observationDate,1972,value,{Number},,,,,, +1973,observationDate,1973,value,{Number},,,,,, +1974,observationDate,1974,value,{Number},,,,,, +1975,observationDate,1975,value,{Number},,,,,, +1976,observationDate,1976,value,{Number},,,,,, +1977,observationDate,1977,value,{Number},,,,,, +1978,observationDate,1978,value,{Number},,,,,, +1979,observationDate,1979,value,{Number},,,,,, +1980,observationDate,1980,value,{Number},,,,,, +1981,observationDate,1981,value,{Number},,,,,, +1982,observationDate,1982,value,{Number},,,,,, +1983,observationDate,1983,value,{Number},,,,,, +1984,observationDate,1984,value,{Number},,,,,, +1985,observationDate,1985,value,{Number},,,,,, +1986,observationDate,1986,value,{Number},,,,,, +1987,observationDate,1987,value,{Number},,,,,, +1988,observationDate,1988,value,{Number},,,,,, +1989,observationDate,1989,value,{Number},,,,,, +1990,observationDate,1990,value,{Number},,,,,, +1991,observationDate,1991,value,{Number},,,,,, +1992,observationDate,1992,value,{Number},,,,,, +1993,observationDate,1993,value,{Number},,,,,, +1994,observationDate,1994,value,{Number},,,,,, +1995,observationDate,1995,value,{Number},,,,,, +1996,observationDate,1996,value,{Number},,,,,, +1997,observationDate,1997,value,{Number},,,,,, +1998,observationDate,1998,value,{Number},,,,,, +1999,observationDate,1999,value,{Number},,,,,, +2000,observationDate,2000,value,{Number},,,,,, +2001,observationDate,2001,value,{Number},,,,,, +2002,observationDate,2002,value,{Number},,,,,, +2003,observationDate,2003,value,{Number},,,,,, +2004,observationDate,2004,value,{Number},,,,,, +2005,observationDate,2005,value,{Number},,,,,, +2006,observationDate,2006,value,{Number},,,,,, +2007,observationDate,2007,value,{Number},,,,,, +2008,observationDate,2008,value,{Number},,,,,, +2009,observationDate,2009,value,{Number},,,,,, +2010,observationDate,2010,value,{Number},,,,,, +2011,observationDate,2011,value,{Number},,,,,, +2012,observationDate,2012,value,{Number},,,,,, +2013,observationDate,2013,value,{Number},,,,,, +2014,observationDate,2014,value,{Number},,,,,, +2015,observationDate,2015,value,{Number},,,,,, +2016,observationDate,2016,value,{Number},,,,,, +2017,observationDate,2017,value,{Number},,,,,, +2018,observationDate,2018,value,{Number},,,,,, +2019,observationDate,2019,value,{Number},,,,,, +2020,observationDate,2020,value,{Number},,,,,, +2021,observationDate,2021,value,{Number},,,,,, +2022,observationDate,2022,value,{Number},,,,,, +2023,observationDate,2023,value,{Number},,,,,, +2024,observationDate,2024,value,{Number},,,,,, +2025,observationDate,2025,value,{Number},,,,,, +2026,observationDate,2026,value,{Number},,,,,, +2027,observationDate,2027,value,{Number},,,,,, +2028,observationDate,2028,value,{Number},,,,,, +2029,observationDate,2029,value,{Number},,,,,, +2030,observationDate,2030,value,{Number},,,,,, +2031,observationDate,2031,value,{Number},,,,,, +2032,observationDate,2032,value,{Number},,,,,, +2033,observationDate,2033,value,{Number},,,,,, +2034,observationDate,2034,value,{Number},,,,,, +2035,observationDate,2035,value,{Number},,,,,, +2036,observationDate,2036,value,{Number},,,,,, +2037,observationDate,2037,value,{Number},,,,,, +2038,observationDate,2038,value,{Number},,,,,, +2039,observationDate,2039,value,{Number},,,,,, +2040,observationDate,2040,value,{Number},,,,,, +2041,observationDate,2041,value,{Number},,,,,, +2042,observationDate,2042,value,{Number},,,,,, +2043,observationDate,2043,value,{Number},,,,,, +2044,observationDate,2044,value,{Number},,,,,, +2045,observationDate,2045,value,{Number},,,,,, +2046,observationDate,2046,value,{Number},,,,,, +2047,observationDate,2047,value,{Number},,,,,, +2048,observationDate,2048,value,{Number},,,,,, +2049,observationDate,2049,value,{Number},,,,,, +2050,observationDate,2050,value,{Number},,,,,, diff --git a/statvar_imports/denmark_demographics/statbank_utils.py b/statvar_imports/denmark_demographics/statbank_utils.py new file mode 100644 index 0000000000..5cea61c823 --- /dev/null +++ b/statvar_imports/denmark_demographics/statbank_utils.py @@ -0,0 +1,46 @@ +# Copyright 2026 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the 'License'); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an 'AS IS' BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +This module provides shared utility functions for interacting with the +Statistics Denmark API (Statbank). It includes helper functions for +recursive JSON key searching and standardized API request handling +required by the population data extraction scripts. +""" + +import requests +from absl import logging + +logging.set_verbosity(logging.INFO) + +def find_key_recursive(source_dict: dict, target_key: str): + """Recursively searches for a key within a nested dictionary.""" + if target_key in source_dict: + return source_dict[target_key] + for _, value in source_dict.items(): + if isinstance(value, dict): + found = find_key_recursive(value, target_key) + if found is not None: + return found + return None + +def fetch_statbank_api(url: str, table_id: str, payload: dict): + """ + Handles the POST request to the Statbank API. + Returns the response object to be processed by the caller. + """ + logging.info(f"Requesting data for table: {table_id}") + response = requests.post(url, json=payload) + response.raise_for_status() + return response diff --git a/statvar_imports/denmark_demographics/test_data/population_quarterly_region_time_marital_status_input.csv b/statvar_imports/denmark_demographics/test_data/population_quarterly_region_time_marital_status_input.csv new file mode 100644 index 0000000000..1882f3d50d --- /dev/null +++ b/statvar_imports/denmark_demographics/test_data/population_quarterly_region_time_marital_status_input.csv @@ -0,0 +1,999 @@ +Region,Sex,Age,Marital_Status,Quarter,Value +All Denmark,Gender_Total,"Age, total",Marital_Total,2025Q4,6019866 +All Denmark,Gender_Total,"Age, total",Marital_Total,2026Q1,6025603 +All Denmark,Gender_Total,"Age, total",Never married,2025Q4,2992359 +All Denmark,Gender_Total,"Age, total",Never married,2026Q1,2999169 +All Denmark,Gender_Total,"Age, total",Married/separated,2025Q4,2169022 +All Denmark,Gender_Total,"Age, total",Married/separated,2026Q1,2166240 +All Denmark,Gender_Total,"Age, total",Widowed,2025Q4,285543 +All Denmark,Gender_Total,"Age, total",Widowed,2026Q1,285498 +All Denmark,Gender_Total,"Age, total",Divorced,2025Q4,572942 +All Denmark,Gender_Total,"Age, total",Divorced,2026Q1,574696 +All Denmark,Gender_Total,0 years,Marital_Total,2025Q4,59356 +All Denmark,Gender_Total,0 years,Marital_Total,2026Q1,59649 +All Denmark,Gender_Total,0 years,Never married,2025Q4,59356 +All Denmark,Gender_Total,0 years,Never married,2026Q1,59649 +All Denmark,Gender_Total,0 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,0 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,0 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,0 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,0 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,0 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,1 year,Marital_Total,2025Q4,57525 +All Denmark,Gender_Total,1 year,Marital_Total,2026Q1,57711 +All Denmark,Gender_Total,1 year,Never married,2025Q4,57525 +All Denmark,Gender_Total,1 year,Never married,2026Q1,57711 +All Denmark,Gender_Total,1 year,Married/separated,2025Q4,0 +All Denmark,Gender_Total,1 year,Married/separated,2026Q1,0 +All Denmark,Gender_Total,1 year,Widowed,2025Q4,0 +All Denmark,Gender_Total,1 year,Widowed,2026Q1,0 +All Denmark,Gender_Total,1 year,Divorced,2025Q4,0 +All Denmark,Gender_Total,1 year,Divorced,2026Q1,0 +All Denmark,Gender_Total,2 years,Marital_Total,2025Q4,58512 +All Denmark,Gender_Total,2 years,Marital_Total,2026Q1,58350 +All Denmark,Gender_Total,2 years,Never married,2025Q4,58512 +All Denmark,Gender_Total,2 years,Never married,2026Q1,58350 +All Denmark,Gender_Total,2 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,2 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,2 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,2 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,2 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,2 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,3 years,Marital_Total,2025Q4,61417 +All Denmark,Gender_Total,3 years,Marital_Total,2026Q1,59630 +All Denmark,Gender_Total,3 years,Never married,2025Q4,61417 +All Denmark,Gender_Total,3 years,Never married,2026Q1,59630 +All Denmark,Gender_Total,3 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,3 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,3 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,3 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,3 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,3 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,4 years,Marital_Total,2025Q4,64050 +All Denmark,Gender_Total,4 years,Marital_Total,2026Q1,65064 +All Denmark,Gender_Total,4 years,Never married,2025Q4,64050 +All Denmark,Gender_Total,4 years,Never married,2026Q1,65064 +All Denmark,Gender_Total,4 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,4 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,4 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,4 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,4 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,4 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,5 years,Marital_Total,2025Q4,63043 +All Denmark,Gender_Total,5 years,Marital_Total,2026Q1,62909 +All Denmark,Gender_Total,5 years,Never married,2025Q4,63043 +All Denmark,Gender_Total,5 years,Never married,2026Q1,62909 +All Denmark,Gender_Total,5 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,5 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,5 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,5 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,5 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,5 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,6 years,Marital_Total,2025Q4,63072 +All Denmark,Gender_Total,6 years,Marital_Total,2026Q1,63143 +All Denmark,Gender_Total,6 years,Never married,2025Q4,63072 +All Denmark,Gender_Total,6 years,Never married,2026Q1,63143 +All Denmark,Gender_Total,6 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,6 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,6 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,6 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,6 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,6 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,7 years,Marital_Total,2025Q4,63866 +All Denmark,Gender_Total,7 years,Marital_Total,2026Q1,63296 +All Denmark,Gender_Total,7 years,Never married,2025Q4,63866 +All Denmark,Gender_Total,7 years,Never married,2026Q1,63296 +All Denmark,Gender_Total,7 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,7 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,7 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,7 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,7 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,7 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,8 years,Marital_Total,2025Q4,63388 +All Denmark,Gender_Total,8 years,Marital_Total,2026Q1,63682 +All Denmark,Gender_Total,8 years,Never married,2025Q4,63388 +All Denmark,Gender_Total,8 years,Never married,2026Q1,63682 +All Denmark,Gender_Total,8 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,8 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,8 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,8 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,8 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,8 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,9 years,Marital_Total,2025Q4,64108 +All Denmark,Gender_Total,9 years,Marital_Total,2026Q1,64317 +All Denmark,Gender_Total,9 years,Never married,2025Q4,64108 +All Denmark,Gender_Total,9 years,Never married,2026Q1,64317 +All Denmark,Gender_Total,9 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,9 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,9 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,9 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,9 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,9 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,10 years,Marital_Total,2025Q4,60786 +All Denmark,Gender_Total,10 years,Marital_Total,2026Q1,61519 +All Denmark,Gender_Total,10 years,Never married,2025Q4,60786 +All Denmark,Gender_Total,10 years,Never married,2026Q1,61519 +All Denmark,Gender_Total,10 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,10 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,10 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,10 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,10 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,10 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,11 years,Marital_Total,2025Q4,60226 +All Denmark,Gender_Total,11 years,Marital_Total,2026Q1,60759 +All Denmark,Gender_Total,11 years,Never married,2025Q4,60226 +All Denmark,Gender_Total,11 years,Never married,2026Q1,60759 +All Denmark,Gender_Total,11 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,11 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,11 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,11 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,11 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,11 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,12 years,Marital_Total,2025Q4,61031 +All Denmark,Gender_Total,12 years,Marital_Total,2026Q1,60212 +All Denmark,Gender_Total,12 years,Never married,2025Q4,61031 +All Denmark,Gender_Total,12 years,Never married,2026Q1,60212 +All Denmark,Gender_Total,12 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,12 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,12 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,12 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,12 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,12 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,13 years,Marital_Total,2025Q4,62303 +All Denmark,Gender_Total,13 years,Marital_Total,2026Q1,62667 +All Denmark,Gender_Total,13 years,Never married,2025Q4,62303 +All Denmark,Gender_Total,13 years,Never married,2026Q1,62667 +All Denmark,Gender_Total,13 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,13 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,13 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,13 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,13 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,13 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,14 years,Marital_Total,2025Q4,65206 +All Denmark,Gender_Total,14 years,Marital_Total,2026Q1,63886 +All Denmark,Gender_Total,14 years,Never married,2025Q4,65206 +All Denmark,Gender_Total,14 years,Never married,2026Q1,63886 +All Denmark,Gender_Total,14 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,14 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,14 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,14 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,14 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,14 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,15 years,Marital_Total,2025Q4,68618 +All Denmark,Gender_Total,15 years,Marital_Total,2026Q1,68577 +All Denmark,Gender_Total,15 years,Never married,2025Q4,68617 +All Denmark,Gender_Total,15 years,Never married,2026Q1,68576 +All Denmark,Gender_Total,15 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,15 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,15 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,15 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,15 years,Divorced,2025Q4,1 +All Denmark,Gender_Total,15 years,Divorced,2026Q1,1 +All Denmark,Gender_Total,16 years,Marital_Total,2025Q4,69559 +All Denmark,Gender_Total,16 years,Marital_Total,2026Q1,68983 +All Denmark,Gender_Total,16 years,Never married,2025Q4,69559 +All Denmark,Gender_Total,16 years,Never married,2026Q1,68983 +All Denmark,Gender_Total,16 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,16 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,16 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,16 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,16 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,16 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,17 years,Marital_Total,2025Q4,71733 +All Denmark,Gender_Total,17 years,Marital_Total,2026Q1,71558 +All Denmark,Gender_Total,17 years,Never married,2025Q4,71733 +All Denmark,Gender_Total,17 years,Never married,2026Q1,71558 +All Denmark,Gender_Total,17 years,Married/separated,2025Q4,0 +All Denmark,Gender_Total,17 years,Married/separated,2026Q1,0 +All Denmark,Gender_Total,17 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,17 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,17 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,17 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,18 years,Marital_Total,2025Q4,70734 +All Denmark,Gender_Total,18 years,Marital_Total,2026Q1,71176 +All Denmark,Gender_Total,18 years,Never married,2025Q4,70719 +All Denmark,Gender_Total,18 years,Never married,2026Q1,71150 +All Denmark,Gender_Total,18 years,Married/separated,2025Q4,15 +All Denmark,Gender_Total,18 years,Married/separated,2026Q1,26 +All Denmark,Gender_Total,18 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,18 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,18 years,Divorced,2025Q4,0 +All Denmark,Gender_Total,18 years,Divorced,2026Q1,0 +All Denmark,Gender_Total,19 years,Marital_Total,2025Q4,72361 +All Denmark,Gender_Total,19 years,Marital_Total,2026Q1,72659 +All Denmark,Gender_Total,19 years,Never married,2025Q4,72266 +All Denmark,Gender_Total,19 years,Never married,2026Q1,72566 +All Denmark,Gender_Total,19 years,Married/separated,2025Q4,92 +All Denmark,Gender_Total,19 years,Married/separated,2026Q1,90 +All Denmark,Gender_Total,19 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,19 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,19 years,Divorced,2025Q4,3 +All Denmark,Gender_Total,19 years,Divorced,2026Q1,3 +All Denmark,Gender_Total,20 years,Marital_Total,2025Q4,74176 +All Denmark,Gender_Total,20 years,Marital_Total,2026Q1,72838 +All Denmark,Gender_Total,20 years,Never married,2025Q4,73793 +All Denmark,Gender_Total,20 years,Never married,2026Q1,72487 +All Denmark,Gender_Total,20 years,Married/separated,2025Q4,371 +All Denmark,Gender_Total,20 years,Married/separated,2026Q1,343 +All Denmark,Gender_Total,20 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,20 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,20 years,Divorced,2025Q4,12 +All Denmark,Gender_Total,20 years,Divorced,2026Q1,8 +All Denmark,Gender_Total,21 years,Marital_Total,2025Q4,74599 +All Denmark,Gender_Total,21 years,Marital_Total,2026Q1,74748 +All Denmark,Gender_Total,21 years,Never married,2025Q4,73540 +All Denmark,Gender_Total,21 years,Never married,2026Q1,73760 +All Denmark,Gender_Total,21 years,Married/separated,2025Q4,1033 +All Denmark,Gender_Total,21 years,Married/separated,2026Q1,955 +All Denmark,Gender_Total,21 years,Widowed,2025Q4,0 +All Denmark,Gender_Total,21 years,Widowed,2026Q1,0 +All Denmark,Gender_Total,21 years,Divorced,2025Q4,26 +All Denmark,Gender_Total,21 years,Divorced,2026Q1,33 +All Denmark,Gender_Total,22 years,Marital_Total,2025Q4,75595 +All Denmark,Gender_Total,22 years,Marital_Total,2026Q1,76243 +All Denmark,Gender_Total,22 years,Never married,2025Q4,73678 +All Denmark,Gender_Total,22 years,Never married,2026Q1,74323 +All Denmark,Gender_Total,22 years,Married/separated,2025Q4,1855 +All Denmark,Gender_Total,22 years,Married/separated,2026Q1,1858 +All Denmark,Gender_Total,22 years,Widowed,2025Q4,1 +All Denmark,Gender_Total,22 years,Widowed,2026Q1,1 +All Denmark,Gender_Total,22 years,Divorced,2025Q4,61 +All Denmark,Gender_Total,22 years,Divorced,2026Q1,61 +All Denmark,Gender_Total,23 years,Marital_Total,2025Q4,76535 +All Denmark,Gender_Total,23 years,Marital_Total,2026Q1,76851 +All Denmark,Gender_Total,23 years,Never married,2025Q4,73797 +All Denmark,Gender_Total,23 years,Never married,2026Q1,74116 +All Denmark,Gender_Total,23 years,Married/separated,2025Q4,2613 +All Denmark,Gender_Total,23 years,Married/separated,2026Q1,2622 +All Denmark,Gender_Total,23 years,Widowed,2025Q4,4 +All Denmark,Gender_Total,23 years,Widowed,2026Q1,3 +All Denmark,Gender_Total,23 years,Divorced,2025Q4,121 +All Denmark,Gender_Total,23 years,Divorced,2026Q1,110 +All Denmark,Gender_Total,24 years,Marital_Total,2025Q4,78801 +All Denmark,Gender_Total,24 years,Marital_Total,2026Q1,78225 +All Denmark,Gender_Total,24 years,Never married,2025Q4,74951 +All Denmark,Gender_Total,24 years,Never married,2026Q1,74404 +All Denmark,Gender_Total,24 years,Married/separated,2025Q4,3675 +All Denmark,Gender_Total,24 years,Married/separated,2026Q1,3633 +All Denmark,Gender_Total,24 years,Widowed,2025Q4,4 +All Denmark,Gender_Total,24 years,Widowed,2026Q1,4 +All Denmark,Gender_Total,24 years,Divorced,2025Q4,171 +All Denmark,Gender_Total,24 years,Divorced,2026Q1,184 +All Denmark,Gender_Total,25 years,Marital_Total,2025Q4,79882 +All Denmark,Gender_Total,25 years,Marital_Total,2026Q1,80748 +All Denmark,Gender_Total,25 years,Never married,2025Q4,74566 +All Denmark,Gender_Total,25 years,Never married,2026Q1,75396 +All Denmark,Gender_Total,25 years,Married/separated,2025Q4,5029 +All Denmark,Gender_Total,25 years,Married/separated,2026Q1,5055 +All Denmark,Gender_Total,25 years,Widowed,2025Q4,3 +All Denmark,Gender_Total,25 years,Widowed,2026Q1,5 +All Denmark,Gender_Total,25 years,Divorced,2025Q4,284 +All Denmark,Gender_Total,25 years,Divorced,2026Q1,292 +All Denmark,Gender_Total,26 years,Marital_Total,2025Q4,80283 +All Denmark,Gender_Total,26 years,Marital_Total,2026Q1,79922 +All Denmark,Gender_Total,26 years,Never married,2025Q4,72701 +All Denmark,Gender_Total,26 years,Never married,2026Q1,72566 +All Denmark,Gender_Total,26 years,Married/separated,2025Q4,7158 +All Denmark,Gender_Total,26 years,Married/separated,2026Q1,6952 +All Denmark,Gender_Total,26 years,Widowed,2025Q4,10 +All Denmark,Gender_Total,26 years,Widowed,2026Q1,9 +All Denmark,Gender_Total,26 years,Divorced,2025Q4,414 +All Denmark,Gender_Total,26 years,Divorced,2026Q1,395 +All Denmark,Gender_Total,27 years,Marital_Total,2025Q4,80364 +All Denmark,Gender_Total,27 years,Marital_Total,2026Q1,80697 +All Denmark,Gender_Total,27 years,Never married,2025Q4,69857 +All Denmark,Gender_Total,27 years,Never married,2026Q1,70277 +All Denmark,Gender_Total,27 years,Married/separated,2025Q4,9861 +All Denmark,Gender_Total,27 years,Married/separated,2026Q1,9768 +All Denmark,Gender_Total,27 years,Widowed,2025Q4,9 +All Denmark,Gender_Total,27 years,Widowed,2026Q1,7 +All Denmark,Gender_Total,27 years,Divorced,2025Q4,637 +All Denmark,Gender_Total,27 years,Divorced,2026Q1,645 +All Denmark,Gender_Total,28 years,Marital_Total,2025Q4,83381 +All Denmark,Gender_Total,28 years,Marital_Total,2026Q1,82461 +All Denmark,Gender_Total,28 years,Never married,2025Q4,68832 +All Denmark,Gender_Total,28 years,Never married,2026Q1,68197 +All Denmark,Gender_Total,28 years,Married/separated,2025Q4,13610 +All Denmark,Gender_Total,28 years,Married/separated,2026Q1,13337 +All Denmark,Gender_Total,28 years,Widowed,2025Q4,15 +All Denmark,Gender_Total,28 years,Widowed,2026Q1,16 +All Denmark,Gender_Total,28 years,Divorced,2025Q4,924 +All Denmark,Gender_Total,28 years,Divorced,2026Q1,911 +All Denmark,Gender_Total,29 years,Marital_Total,2025Q4,82382 +All Denmark,Gender_Total,29 years,Marital_Total,2026Q1,82630 +All Denmark,Gender_Total,29 years,Never married,2025Q4,63773 +All Denmark,Gender_Total,29 years,Never married,2026Q1,64295 +All Denmark,Gender_Total,29 years,Married/separated,2025Q4,17280 +All Denmark,Gender_Total,29 years,Married/separated,2026Q1,17037 +All Denmark,Gender_Total,29 years,Widowed,2025Q4,18 +All Denmark,Gender_Total,29 years,Widowed,2026Q1,14 +All Denmark,Gender_Total,29 years,Divorced,2025Q4,1311 +All Denmark,Gender_Total,29 years,Divorced,2026Q1,1284 +All Denmark,Gender_Total,30 years,Marital_Total,2025Q4,86137 +All Denmark,Gender_Total,30 years,Marital_Total,2026Q1,85138 +All Denmark,Gender_Total,30 years,Never married,2025Q4,61907 +All Denmark,Gender_Total,30 years,Never married,2026Q1,61451 +All Denmark,Gender_Total,30 years,Married/separated,2025Q4,22475 +All Denmark,Gender_Total,30 years,Married/separated,2026Q1,21948 +All Denmark,Gender_Total,30 years,Widowed,2025Q4,21 +All Denmark,Gender_Total,30 years,Widowed,2026Q1,25 +All Denmark,Gender_Total,30 years,Divorced,2025Q4,1734 +All Denmark,Gender_Total,30 years,Divorced,2026Q1,1714 +All Denmark,Gender_Total,31 years,Marital_Total,2025Q4,83762 +All Denmark,Gender_Total,31 years,Marital_Total,2026Q1,85646 +All Denmark,Gender_Total,31 years,Never married,2025Q4,56227 +All Denmark,Gender_Total,31 years,Never married,2026Q1,57864 +All Denmark,Gender_Total,31 years,Married/separated,2025Q4,25414 +All Denmark,Gender_Total,31 years,Married/separated,2026Q1,25670 +All Denmark,Gender_Total,31 years,Widowed,2025Q4,40 +All Denmark,Gender_Total,31 years,Widowed,2026Q1,33 +All Denmark,Gender_Total,31 years,Divorced,2025Q4,2081 +All Denmark,Gender_Total,31 years,Divorced,2026Q1,2079 +All Denmark,Gender_Total,32 years,Marital_Total,2025Q4,83595 +All Denmark,Gender_Total,32 years,Marital_Total,2026Q1,83036 +All Denmark,Gender_Total,32 years,Never married,2025Q4,52027 +All Denmark,Gender_Total,32 years,Never married,2026Q1,51835 +All Denmark,Gender_Total,32 years,Married/separated,2025Q4,28893 +All Denmark,Gender_Total,32 years,Married/separated,2026Q1,28517 +All Denmark,Gender_Total,32 years,Widowed,2025Q4,30 +All Denmark,Gender_Total,32 years,Widowed,2026Q1,35 +All Denmark,Gender_Total,32 years,Divorced,2025Q4,2645 +All Denmark,Gender_Total,32 years,Divorced,2026Q1,2649 +All Denmark,Gender_Total,33 years,Marital_Total,2025Q4,83309 +All Denmark,Gender_Total,33 years,Marital_Total,2026Q1,84151 +All Denmark,Gender_Total,33 years,Never married,2025Q4,47968 +All Denmark,Gender_Total,33 years,Never married,2026Q1,48736 +All Denmark,Gender_Total,33 years,Married/separated,2025Q4,32184 +All Denmark,Gender_Total,33 years,Married/separated,2026Q1,32258 +All Denmark,Gender_Total,33 years,Widowed,2025Q4,40 +All Denmark,Gender_Total,33 years,Widowed,2026Q1,41 +All Denmark,Gender_Total,33 years,Divorced,2025Q4,3117 +All Denmark,Gender_Total,33 years,Divorced,2026Q1,3116 +All Denmark,Gender_Total,34 years,Marital_Total,2025Q4,81212 +All Denmark,Gender_Total,34 years,Marital_Total,2026Q1,81318 +All Denmark,Gender_Total,34 years,Never married,2025Q4,43651 +All Denmark,Gender_Total,34 years,Never married,2026Q1,43931 +All Denmark,Gender_Total,34 years,Married/separated,2025Q4,33792 +All Denmark,Gender_Total,34 years,Married/separated,2026Q1,33609 +All Denmark,Gender_Total,34 years,Widowed,2025Q4,52 +All Denmark,Gender_Total,34 years,Widowed,2026Q1,51 +All Denmark,Gender_Total,34 years,Divorced,2025Q4,3717 +All Denmark,Gender_Total,34 years,Divorced,2026Q1,3727 +All Denmark,Gender_Total,35 years,Marital_Total,2025Q4,80681 +All Denmark,Gender_Total,35 years,Marital_Total,2026Q1,81290 +All Denmark,Gender_Total,35 years,Never married,2025Q4,40502 +All Denmark,Gender_Total,35 years,Never married,2026Q1,40925 +All Denmark,Gender_Total,35 years,Married/separated,2025Q4,35869 +All Denmark,Gender_Total,35 years,Married/separated,2026Q1,35998 +All Denmark,Gender_Total,35 years,Widowed,2025Q4,62 +All Denmark,Gender_Total,35 years,Widowed,2026Q1,57 +All Denmark,Gender_Total,35 years,Divorced,2025Q4,4248 +All Denmark,Gender_Total,35 years,Divorced,2026Q1,4310 +All Denmark,Gender_Total,36 years,Marital_Total,2025Q4,78325 +All Denmark,Gender_Total,36 years,Marital_Total,2026Q1,79025 +All Denmark,Gender_Total,36 years,Never married,2025Q4,37003 +All Denmark,Gender_Total,36 years,Never married,2026Q1,37575 +All Denmark,Gender_Total,36 years,Married/separated,2025Q4,36543 +All Denmark,Gender_Total,36 years,Married/separated,2026Q1,36726 +All Denmark,Gender_Total,36 years,Widowed,2025Q4,76 +All Denmark,Gender_Total,36 years,Widowed,2026Q1,76 +All Denmark,Gender_Total,36 years,Divorced,2025Q4,4703 +All Denmark,Gender_Total,36 years,Divorced,2026Q1,4648 +All Denmark,Gender_Total,37 years,Marital_Total,2025Q4,75621 +All Denmark,Gender_Total,37 years,Marital_Total,2026Q1,76630 +All Denmark,Gender_Total,37 years,Never married,2025Q4,33250 +All Denmark,Gender_Total,37 years,Never married,2026Q1,33753 +All Denmark,Gender_Total,37 years,Married/separated,2025Q4,37110 +All Denmark,Gender_Total,37 years,Married/separated,2026Q1,37481 +All Denmark,Gender_Total,37 years,Widowed,2025Q4,100 +All Denmark,Gender_Total,37 years,Widowed,2026Q1,101 +All Denmark,Gender_Total,37 years,Divorced,2025Q4,5161 +All Denmark,Gender_Total,37 years,Divorced,2026Q1,5295 +All Denmark,Gender_Total,38 years,Marital_Total,2025Q4,73301 +All Denmark,Gender_Total,38 years,Marital_Total,2026Q1,73618 +All Denmark,Gender_Total,38 years,Never married,2025Q4,30158 +All Denmark,Gender_Total,38 years,Never married,2026Q1,30375 +All Denmark,Gender_Total,38 years,Married/separated,2025Q4,37413 +All Denmark,Gender_Total,38 years,Married/separated,2026Q1,37511 +All Denmark,Gender_Total,38 years,Widowed,2025Q4,96 +All Denmark,Gender_Total,38 years,Widowed,2026Q1,99 +All Denmark,Gender_Total,38 years,Divorced,2025Q4,5634 +All Denmark,Gender_Total,38 years,Divorced,2026Q1,5633 +All Denmark,Gender_Total,39 years,Marital_Total,2025Q4,71982 +All Denmark,Gender_Total,39 years,Marital_Total,2026Q1,72533 +All Denmark,Gender_Total,39 years,Never married,2025Q4,28276 +All Denmark,Gender_Total,39 years,Never married,2026Q1,28690 +All Denmark,Gender_Total,39 years,Married/separated,2025Q4,37532 +All Denmark,Gender_Total,39 years,Married/separated,2026Q1,37539 +All Denmark,Gender_Total,39 years,Widowed,2025Q4,139 +All Denmark,Gender_Total,39 years,Widowed,2026Q1,124 +All Denmark,Gender_Total,39 years,Divorced,2025Q4,6035 +All Denmark,Gender_Total,39 years,Divorced,2026Q1,6180 +All Denmark,Gender_Total,40 years,Marital_Total,2025Q4,69881 +All Denmark,Gender_Total,40 years,Marital_Total,2026Q1,70617 +All Denmark,Gender_Total,40 years,Never married,2025Q4,26074 +All Denmark,Gender_Total,40 years,Never married,2026Q1,26523 +All Denmark,Gender_Total,40 years,Married/separated,2025Q4,37094 +All Denmark,Gender_Total,40 years,Married/separated,2026Q1,37337 +All Denmark,Gender_Total,40 years,Widowed,2025Q4,142 +All Denmark,Gender_Total,40 years,Widowed,2026Q1,142 +All Denmark,Gender_Total,40 years,Divorced,2025Q4,6571 +All Denmark,Gender_Total,40 years,Divorced,2026Q1,6615 +All Denmark,Gender_Total,41 years,Marital_Total,2025Q4,67770 +All Denmark,Gender_Total,41 years,Marital_Total,2026Q1,68118 +All Denmark,Gender_Total,41 years,Never married,2025Q4,24017 +All Denmark,Gender_Total,41 years,Never married,2026Q1,24177 +All Denmark,Gender_Total,41 years,Married/separated,2025Q4,36646 +All Denmark,Gender_Total,41 years,Married/separated,2026Q1,36830 +All Denmark,Gender_Total,41 years,Widowed,2025Q4,145 +All Denmark,Gender_Total,41 years,Widowed,2026Q1,149 +All Denmark,Gender_Total,41 years,Divorced,2025Q4,6962 +All Denmark,Gender_Total,41 years,Divorced,2026Q1,6962 +All Denmark,Gender_Total,42 years,Marital_Total,2025Q4,66606 +All Denmark,Gender_Total,42 years,Marital_Total,2026Q1,66468 +All Denmark,Gender_Total,42 years,Never married,2025Q4,22508 +All Denmark,Gender_Total,42 years,Never married,2026Q1,22594 +All Denmark,Gender_Total,42 years,Married/separated,2025Q4,36493 +All Denmark,Gender_Total,42 years,Married/separated,2026Q1,36201 +All Denmark,Gender_Total,42 years,Widowed,2025Q4,173 +All Denmark,Gender_Total,42 years,Widowed,2026Q1,184 +All Denmark,Gender_Total,42 years,Divorced,2025Q4,7432 +All Denmark,Gender_Total,42 years,Divorced,2026Q1,7489 +All Denmark,Gender_Total,43 years,Marital_Total,2025Q4,67055 +All Denmark,Gender_Total,43 years,Marital_Total,2026Q1,67550 +All Denmark,Gender_Total,43 years,Never married,2025Q4,21668 +All Denmark,Gender_Total,43 years,Never married,2026Q1,22050 +All Denmark,Gender_Total,43 years,Married/separated,2025Q4,36972 +All Denmark,Gender_Total,43 years,Married/separated,2026Q1,37158 +All Denmark,Gender_Total,43 years,Widowed,2025Q4,238 +All Denmark,Gender_Total,43 years,Widowed,2026Q1,224 +All Denmark,Gender_Total,43 years,Divorced,2025Q4,8177 +All Denmark,Gender_Total,43 years,Divorced,2026Q1,8118 +All Denmark,Gender_Total,44 years,Marital_Total,2025Q4,67339 +All Denmark,Gender_Total,44 years,Marital_Total,2026Q1,66823 +All Denmark,Gender_Total,44 years,Never married,2025Q4,20941 +All Denmark,Gender_Total,44 years,Never married,2026Q1,20800 +All Denmark,Gender_Total,44 years,Married/separated,2025Q4,37438 +All Denmark,Gender_Total,44 years,Married/separated,2026Q1,37098 +All Denmark,Gender_Total,44 years,Widowed,2025Q4,244 +All Denmark,Gender_Total,44 years,Widowed,2026Q1,240 +All Denmark,Gender_Total,44 years,Divorced,2025Q4,8716 +All Denmark,Gender_Total,44 years,Divorced,2026Q1,8685 +All Denmark,Gender_Total,45 years,Marital_Total,2025Q4,70783 +All Denmark,Gender_Total,45 years,Marital_Total,2026Q1,70362 +All Denmark,Gender_Total,45 years,Never married,2025Q4,21064 +All Denmark,Gender_Total,45 years,Never married,2026Q1,21023 +All Denmark,Gender_Total,45 years,Married/separated,2025Q4,39561 +All Denmark,Gender_Total,45 years,Married/separated,2026Q1,39297 +All Denmark,Gender_Total,45 years,Widowed,2025Q4,291 +All Denmark,Gender_Total,45 years,Widowed,2026Q1,288 +All Denmark,Gender_Total,45 years,Divorced,2025Q4,9867 +All Denmark,Gender_Total,45 years,Divorced,2026Q1,9754 +All Denmark,Gender_Total,46 years,Marital_Total,2025Q4,71134 +All Denmark,Gender_Total,46 years,Marital_Total,2026Q1,71092 +All Denmark,Gender_Total,46 years,Never married,2025Q4,20121 +All Denmark,Gender_Total,46 years,Never married,2026Q1,20299 +All Denmark,Gender_Total,46 years,Married/separated,2025Q4,40005 +All Denmark,Gender_Total,46 years,Married/separated,2026Q1,39841 +All Denmark,Gender_Total,46 years,Widowed,2025Q4,291 +All Denmark,Gender_Total,46 years,Widowed,2026Q1,307 +All Denmark,Gender_Total,46 years,Divorced,2025Q4,10717 +All Denmark,Gender_Total,46 years,Divorced,2026Q1,10645 +All Denmark,Gender_Total,47 years,Marital_Total,2025Q4,73041 +All Denmark,Gender_Total,47 years,Marital_Total,2026Q1,72668 +All Denmark,Gender_Total,47 years,Never married,2025Q4,19829 +All Denmark,Gender_Total,47 years,Never married,2026Q1,19788 +All Denmark,Gender_Total,47 years,Married/separated,2025Q4,40830 +All Denmark,Gender_Total,47 years,Married/separated,2026Q1,40597 +All Denmark,Gender_Total,47 years,Widowed,2025Q4,383 +All Denmark,Gender_Total,47 years,Widowed,2026Q1,365 +All Denmark,Gender_Total,47 years,Divorced,2025Q4,11999 +All Denmark,Gender_Total,47 years,Divorced,2026Q1,11918 +All Denmark,Gender_Total,48 years,Marital_Total,2025Q4,71746 +All Denmark,Gender_Total,48 years,Marital_Total,2026Q1,72077 +All Denmark,Gender_Total,48 years,Never married,2025Q4,18801 +All Denmark,Gender_Total,48 years,Never married,2026Q1,18922 +All Denmark,Gender_Total,48 years,Married/separated,2025Q4,40226 +All Denmark,Gender_Total,48 years,Married/separated,2026Q1,40356 +All Denmark,Gender_Total,48 years,Widowed,2025Q4,419 +All Denmark,Gender_Total,48 years,Widowed,2026Q1,411 +All Denmark,Gender_Total,48 years,Divorced,2025Q4,12300 +All Denmark,Gender_Total,48 years,Divorced,2026Q1,12388 +All Denmark,Gender_Total,49 years,Marital_Total,2025Q4,76213 +All Denmark,Gender_Total,49 years,Marital_Total,2026Q1,74386 +All Denmark,Gender_Total,49 years,Never married,2025Q4,19421 +All Denmark,Gender_Total,49 years,Never married,2026Q1,19072 +All Denmark,Gender_Total,49 years,Married/separated,2025Q4,42479 +All Denmark,Gender_Total,49 years,Married/separated,2026Q1,41339 +All Denmark,Gender_Total,49 years,Widowed,2025Q4,501 +All Denmark,Gender_Total,49 years,Widowed,2026Q1,498 +All Denmark,Gender_Total,49 years,Divorced,2025Q4,13812 +All Denmark,Gender_Total,49 years,Divorced,2026Q1,13477 +All Denmark,Gender_Total,50 years,Marital_Total,2025Q4,79826 +All Denmark,Gender_Total,50 years,Marital_Total,2026Q1,79927 +All Denmark,Gender_Total,50 years,Never married,2025Q4,19535 +All Denmark,Gender_Total,50 years,Never married,2026Q1,19746 +All Denmark,Gender_Total,50 years,Married/separated,2025Q4,44960 +All Denmark,Gender_Total,50 years,Married/separated,2026Q1,44830 +All Denmark,Gender_Total,50 years,Widowed,2025Q4,626 +All Denmark,Gender_Total,50 years,Widowed,2026Q1,625 +All Denmark,Gender_Total,50 years,Divorced,2025Q4,14705 +All Denmark,Gender_Total,50 years,Divorced,2026Q1,14726 +All Denmark,Gender_Total,51 years,Marital_Total,2025Q4,78228 +All Denmark,Gender_Total,51 years,Marital_Total,2026Q1,78578 +All Denmark,Gender_Total,51 years,Never married,2025Q4,18508 +All Denmark,Gender_Total,51 years,Never married,2026Q1,18540 +All Denmark,Gender_Total,51 years,Married/separated,2025Q4,44273 +All Denmark,Gender_Total,51 years,Married/separated,2026Q1,44466 +All Denmark,Gender_Total,51 years,Widowed,2025Q4,590 +All Denmark,Gender_Total,51 years,Widowed,2026Q1,611 +All Denmark,Gender_Total,51 years,Divorced,2025Q4,14857 +All Denmark,Gender_Total,51 years,Divorced,2026Q1,14961 +All Denmark,Gender_Total,52 years,Marital_Total,2025Q4,78183 +All Denmark,Gender_Total,52 years,Marital_Total,2026Q1,77835 +All Denmark,Gender_Total,52 years,Never married,2025Q4,17840 +All Denmark,Gender_Total,52 years,Never married,2026Q1,17953 +All Denmark,Gender_Total,52 years,Married/separated,2025Q4,44202 +All Denmark,Gender_Total,52 years,Married/separated,2026Q1,43862 +All Denmark,Gender_Total,52 years,Widowed,2025Q4,752 +All Denmark,Gender_Total,52 years,Widowed,2026Q1,727 +All Denmark,Gender_Total,52 years,Divorced,2025Q4,15389 +All Denmark,Gender_Total,52 years,Divorced,2026Q1,15293 +All Denmark,Gender_Total,53 years,Marital_Total,2025Q4,81764 +All Denmark,Gender_Total,53 years,Marital_Total,2026Q1,81029 +All Denmark,Gender_Total,53 years,Never married,2025Q4,17961 +All Denmark,Gender_Total,53 years,Never married,2026Q1,17921 +All Denmark,Gender_Total,53 years,Married/separated,2025Q4,46333 +All Denmark,Gender_Total,53 years,Married/separated,2026Q1,45854 +All Denmark,Gender_Total,53 years,Widowed,2025Q4,830 +All Denmark,Gender_Total,53 years,Widowed,2026Q1,819 +All Denmark,Gender_Total,53 years,Divorced,2025Q4,16640 +All Denmark,Gender_Total,53 years,Divorced,2026Q1,16435 +All Denmark,Gender_Total,54 years,Marital_Total,2025Q4,78596 +All Denmark,Gender_Total,54 years,Marital_Total,2026Q1,79525 +All Denmark,Gender_Total,54 years,Never married,2025Q4,16756 +All Denmark,Gender_Total,54 years,Never married,2026Q1,17040 +All Denmark,Gender_Total,54 years,Married/separated,2025Q4,44898 +All Denmark,Gender_Total,54 years,Married/separated,2026Q1,45325 +All Denmark,Gender_Total,54 years,Widowed,2025Q4,948 +All Denmark,Gender_Total,54 years,Widowed,2026Q1,946 +All Denmark,Gender_Total,54 years,Divorced,2025Q4,15994 +All Denmark,Gender_Total,54 years,Divorced,2026Q1,16214 +All Denmark,Gender_Total,55 years,Marital_Total,2025Q4,75576 +All Denmark,Gender_Total,55 years,Marital_Total,2026Q1,76007 +All Denmark,Gender_Total,55 years,Never married,2025Q4,15467 +All Denmark,Gender_Total,55 years,Never married,2026Q1,15688 +All Denmark,Gender_Total,55 years,Married/separated,2025Q4,43472 +All Denmark,Gender_Total,55 years,Married/separated,2026Q1,43547 +All Denmark,Gender_Total,55 years,Widowed,2025Q4,1004 +All Denmark,Gender_Total,55 years,Widowed,2026Q1,1010 +All Denmark,Gender_Total,55 years,Divorced,2025Q4,15633 +All Denmark,Gender_Total,55 years,Divorced,2026Q1,15762 +All Denmark,Gender_Total,56 years,Marital_Total,2025Q4,75623 +All Denmark,Gender_Total,56 years,Marital_Total,2026Q1,75186 +All Denmark,Gender_Total,56 years,Never married,2025Q4,15273 +All Denmark,Gender_Total,56 years,Never married,2026Q1,15178 +All Denmark,Gender_Total,56 years,Married/separated,2025Q4,43438 +All Denmark,Gender_Total,56 years,Married/separated,2026Q1,43231 +All Denmark,Gender_Total,56 years,Widowed,2025Q4,1140 +All Denmark,Gender_Total,56 years,Widowed,2026Q1,1123 +All Denmark,Gender_Total,56 years,Divorced,2025Q4,15772 +All Denmark,Gender_Total,56 years,Divorced,2026Q1,15654 +All Denmark,Gender_Total,57 years,Marital_Total,2025Q4,78666 +All Denmark,Gender_Total,57 years,Marital_Total,2026Q1,77616 +All Denmark,Gender_Total,57 years,Never married,2025Q4,15394 +All Denmark,Gender_Total,57 years,Never married,2026Q1,15237 +All Denmark,Gender_Total,57 years,Married/separated,2025Q4,45381 +All Denmark,Gender_Total,57 years,Married/separated,2026Q1,44652 +All Denmark,Gender_Total,57 years,Widowed,2025Q4,1297 +All Denmark,Gender_Total,57 years,Widowed,2026Q1,1267 +All Denmark,Gender_Total,57 years,Divorced,2025Q4,16594 +All Denmark,Gender_Total,57 years,Divorced,2026Q1,16460 +All Denmark,Gender_Total,58 years,Marital_Total,2025Q4,84620 +All Denmark,Gender_Total,58 years,Marital_Total,2026Q1,82421 +All Denmark,Gender_Total,58 years,Never married,2025Q4,16241 +All Denmark,Gender_Total,58 years,Never married,2026Q1,15911 +All Denmark,Gender_Total,58 years,Married/separated,2025Q4,48788 +All Denmark,Gender_Total,58 years,Married/separated,2026Q1,47453 +All Denmark,Gender_Total,58 years,Widowed,2025Q4,1634 +All Denmark,Gender_Total,58 years,Widowed,2026Q1,1594 +All Denmark,Gender_Total,58 years,Divorced,2025Q4,17957 +All Denmark,Gender_Total,58 years,Divorced,2026Q1,17463 +All Denmark,Gender_Total,59 years,Marital_Total,2025Q4,86791 +All Denmark,Gender_Total,59 years,Marital_Total,2026Q1,87563 +All Denmark,Gender_Total,59 years,Never married,2025Q4,16060 +All Denmark,Gender_Total,59 years,Never married,2026Q1,16186 +All Denmark,Gender_Total,59 years,Married/separated,2025Q4,50473 +All Denmark,Gender_Total,59 years,Married/separated,2026Q1,50909 +All Denmark,Gender_Total,59 years,Widowed,2025Q4,1934 +All Denmark,Gender_Total,59 years,Widowed,2026Q1,1932 +All Denmark,Gender_Total,59 years,Divorced,2025Q4,18324 +All Denmark,Gender_Total,59 years,Divorced,2026Q1,18536 +All Denmark,Gender_Total,60 years,Marital_Total,2025Q4,83887 +All Denmark,Gender_Total,60 years,Marital_Total,2026Q1,84315 +All Denmark,Gender_Total,60 years,Never married,2025Q4,14991 +All Denmark,Gender_Total,60 years,Never married,2026Q1,15087 +All Denmark,Gender_Total,60 years,Married/separated,2025Q4,49294 +All Denmark,Gender_Total,60 years,Married/separated,2026Q1,49447 +All Denmark,Gender_Total,60 years,Widowed,2025Q4,2068 +All Denmark,Gender_Total,60 years,Widowed,2026Q1,2107 +All Denmark,Gender_Total,60 years,Divorced,2025Q4,17534 +All Denmark,Gender_Total,60 years,Divorced,2026Q1,17674 +All Denmark,Gender_Total,61 years,Marital_Total,2025Q4,81198 +All Denmark,Gender_Total,61 years,Marital_Total,2026Q1,81688 +All Denmark,Gender_Total,61 years,Never married,2025Q4,14333 +All Denmark,Gender_Total,61 years,Never married,2026Q1,14472 +All Denmark,Gender_Total,61 years,Married/separated,2025Q4,47924 +All Denmark,Gender_Total,61 years,Married/separated,2026Q1,48010 +All Denmark,Gender_Total,61 years,Widowed,2025Q4,2344 +All Denmark,Gender_Total,61 years,Widowed,2026Q1,2338 +All Denmark,Gender_Total,61 years,Divorced,2025Q4,16597 +All Denmark,Gender_Total,61 years,Divorced,2026Q1,16868 +All Denmark,Gender_Total,62 years,Marital_Total,2025Q4,77837 +All Denmark,Gender_Total,62 years,Marital_Total,2026Q1,79285 +All Denmark,Gender_Total,62 years,Never married,2025Q4,13332 +All Denmark,Gender_Total,62 years,Never married,2026Q1,13669 +All Denmark,Gender_Total,62 years,Married/separated,2025Q4,46300 +All Denmark,Gender_Total,62 years,Married/separated,2026Q1,47108 +All Denmark,Gender_Total,62 years,Widowed,2025Q4,2547 +All Denmark,Gender_Total,62 years,Widowed,2026Q1,2504 +All Denmark,Gender_Total,62 years,Divorced,2025Q4,15658 +All Denmark,Gender_Total,62 years,Divorced,2026Q1,16004 +All Denmark,Gender_Total,63 years,Marital_Total,2025Q4,74496 +All Denmark,Gender_Total,63 years,Marital_Total,2026Q1,74450 +All Denmark,Gender_Total,63 years,Never married,2025Q4,12230 +All Denmark,Gender_Total,63 years,Never married,2026Q1,12264 +All Denmark,Gender_Total,63 years,Married/separated,2025Q4,44540 +All Denmark,Gender_Total,63 years,Married/separated,2026Q1,44442 +All Denmark,Gender_Total,63 years,Widowed,2025Q4,2924 +All Denmark,Gender_Total,63 years,Widowed,2026Q1,2914 +All Denmark,Gender_Total,63 years,Divorced,2025Q4,14802 +All Denmark,Gender_Total,63 years,Divorced,2026Q1,14830 +All Denmark,Gender_Total,64 years,Marital_Total,2025Q4,71255 +All Denmark,Gender_Total,64 years,Marital_Total,2026Q1,71648 +All Denmark,Gender_Total,64 years,Never married,2025Q4,11438 +All Denmark,Gender_Total,64 years,Never married,2026Q1,11582 +All Denmark,Gender_Total,64 years,Married/separated,2025Q4,42829 +All Denmark,Gender_Total,64 years,Married/separated,2026Q1,42968 +All Denmark,Gender_Total,64 years,Widowed,2025Q4,3109 +All Denmark,Gender_Total,64 years,Widowed,2026Q1,3074 +All Denmark,Gender_Total,64 years,Divorced,2025Q4,13879 +All Denmark,Gender_Total,64 years,Divorced,2026Q1,14024 +All Denmark,Gender_Total,65 years,Marital_Total,2025Q4,69919 +All Denmark,Gender_Total,65 years,Marital_Total,2026Q1,70665 +All Denmark,Gender_Total,65 years,Never married,2025Q4,10687 +All Denmark,Gender_Total,65 years,Never married,2026Q1,10907 +All Denmark,Gender_Total,65 years,Married/separated,2025Q4,42286 +All Denmark,Gender_Total,65 years,Married/separated,2026Q1,42573 +All Denmark,Gender_Total,65 years,Widowed,2025Q4,3540 +All Denmark,Gender_Total,65 years,Widowed,2026Q1,3560 +All Denmark,Gender_Total,65 years,Divorced,2025Q4,13406 +All Denmark,Gender_Total,65 years,Divorced,2026Q1,13625 +All Denmark,Gender_Total,66 years,Marital_Total,2025Q4,67430 +All Denmark,Gender_Total,66 years,Marital_Total,2026Q1,67056 +All Denmark,Gender_Total,66 years,Never married,2025Q4,10010 +All Denmark,Gender_Total,66 years,Never married,2026Q1,10027 +All Denmark,Gender_Total,66 years,Married/separated,2025Q4,41182 +All Denmark,Gender_Total,66 years,Married/separated,2026Q1,40757 +All Denmark,Gender_Total,66 years,Widowed,2025Q4,3792 +All Denmark,Gender_Total,66 years,Widowed,2026Q1,3738 +All Denmark,Gender_Total,66 years,Divorced,2025Q4,12446 +All Denmark,Gender_Total,66 years,Divorced,2026Q1,12534 +All Denmark,Gender_Total,67 years,Marital_Total,2025Q4,66202 +All Denmark,Gender_Total,67 years,Marital_Total,2026Q1,66619 +All Denmark,Gender_Total,67 years,Never married,2025Q4,9452 +All Denmark,Gender_Total,67 years,Never married,2026Q1,9550 +All Denmark,Gender_Total,67 years,Married/separated,2025Q4,40512 +All Denmark,Gender_Total,67 years,Married/separated,2026Q1,40644 +All Denmark,Gender_Total,67 years,Widowed,2025Q4,4258 +All Denmark,Gender_Total,67 years,Widowed,2026Q1,4309 +All Denmark,Gender_Total,67 years,Divorced,2025Q4,11980 +All Denmark,Gender_Total,67 years,Divorced,2026Q1,12116 +All Denmark,Gender_Total,68 years,Marital_Total,2025Q4,64923 +All Denmark,Gender_Total,68 years,Marital_Total,2026Q1,65093 +All Denmark,Gender_Total,68 years,Never married,2025Q4,8804 +All Denmark,Gender_Total,68 years,Never married,2026Q1,8931 +All Denmark,Gender_Total,68 years,Married/separated,2025Q4,39824 +All Denmark,Gender_Total,68 years,Married/separated,2026Q1,39916 +All Denmark,Gender_Total,68 years,Widowed,2025Q4,4832 +All Denmark,Gender_Total,68 years,Widowed,2026Q1,4750 +All Denmark,Gender_Total,68 years,Divorced,2025Q4,11463 +All Denmark,Gender_Total,68 years,Divorced,2026Q1,11496 +All Denmark,Gender_Total,69 years,Marital_Total,2025Q4,64234 +All Denmark,Gender_Total,69 years,Marital_Total,2026Q1,64481 +All Denmark,Gender_Total,69 years,Never married,2025Q4,8330 +All Denmark,Gender_Total,69 years,Never married,2026Q1,8349 +All Denmark,Gender_Total,69 years,Married/separated,2025Q4,39574 +All Denmark,Gender_Total,69 years,Married/separated,2026Q1,39586 +All Denmark,Gender_Total,69 years,Widowed,2025Q4,5282 +All Denmark,Gender_Total,69 years,Widowed,2026Q1,5348 +All Denmark,Gender_Total,69 years,Divorced,2025Q4,11048 +All Denmark,Gender_Total,69 years,Divorced,2026Q1,11198 +All Denmark,Gender_Total,70 years,Marital_Total,2025Q4,62159 +All Denmark,Gender_Total,70 years,Marital_Total,2026Q1,62417 +All Denmark,Gender_Total,70 years,Never married,2025Q4,7487 +All Denmark,Gender_Total,70 years,Never married,2026Q1,7709 +All Denmark,Gender_Total,70 years,Married/separated,2025Q4,38299 +All Denmark,Gender_Total,70 years,Married/separated,2026Q1,38357 +All Denmark,Gender_Total,70 years,Widowed,2025Q4,5769 +All Denmark,Gender_Total,70 years,Widowed,2026Q1,5728 +All Denmark,Gender_Total,70 years,Divorced,2025Q4,10604 +All Denmark,Gender_Total,70 years,Divorced,2026Q1,10623 +All Denmark,Gender_Total,71 years,Marital_Total,2025Q4,60131 +All Denmark,Gender_Total,71 years,Marital_Total,2026Q1,60183 +All Denmark,Gender_Total,71 years,Never married,2025Q4,6991 +All Denmark,Gender_Total,71 years,Never married,2026Q1,7005 +All Denmark,Gender_Total,71 years,Married/separated,2025Q4,36935 +All Denmark,Gender_Total,71 years,Married/separated,2026Q1,36848 +All Denmark,Gender_Total,71 years,Widowed,2025Q4,6152 +All Denmark,Gender_Total,71 years,Widowed,2026Q1,6188 +All Denmark,Gender_Total,71 years,Divorced,2025Q4,10053 +All Denmark,Gender_Total,71 years,Divorced,2026Q1,10142 +All Denmark,Gender_Total,72 years,Marital_Total,2025Q4,60740 +All Denmark,Gender_Total,72 years,Marital_Total,2026Q1,60126 +All Denmark,Gender_Total,72 years,Never married,2025Q4,6421 +All Denmark,Gender_Total,72 years,Never married,2026Q1,6493 +All Denmark,Gender_Total,72 years,Married/separated,2025Q4,37497 +All Denmark,Gender_Total,72 years,Married/separated,2026Q1,36923 +All Denmark,Gender_Total,72 years,Widowed,2025Q4,6866 +All Denmark,Gender_Total,72 years,Widowed,2026Q1,6770 +All Denmark,Gender_Total,72 years,Divorced,2025Q4,9956 +All Denmark,Gender_Total,72 years,Divorced,2026Q1,9940 +All Denmark,Gender_Total,73 years,Marital_Total,2025Q4,56960 +All Denmark,Gender_Total,73 years,Marital_Total,2026Q1,57772 +All Denmark,Gender_Total,73 years,Never married,2025Q4,5591 +All Denmark,Gender_Total,73 years,Never married,2026Q1,5733 +All Denmark,Gender_Total,73 years,Married/separated,2025Q4,34982 +All Denmark,Gender_Total,73 years,Married/separated,2026Q1,35446 +All Denmark,Gender_Total,73 years,Widowed,2025Q4,7289 +All Denmark,Gender_Total,73 years,Widowed,2026Q1,7334 +All Denmark,Gender_Total,73 years,Divorced,2025Q4,9098 +All Denmark,Gender_Total,73 years,Divorced,2026Q1,9259 +All Denmark,Gender_Total,74 years,Marital_Total,2025Q4,55571 +All Denmark,Gender_Total,74 years,Marital_Total,2026Q1,55501 +All Denmark,Gender_Total,74 years,Never married,2025Q4,4940 +All Denmark,Gender_Total,74 years,Never married,2026Q1,5051 +All Denmark,Gender_Total,74 years,Married/separated,2025Q4,33908 +All Denmark,Gender_Total,74 years,Married/separated,2026Q1,33902 +All Denmark,Gender_Total,74 years,Widowed,2025Q4,7862 +All Denmark,Gender_Total,74 years,Widowed,2026Q1,7856 +All Denmark,Gender_Total,74 years,Divorced,2025Q4,8861 +All Denmark,Gender_Total,74 years,Divorced,2026Q1,8692 +All Denmark,Gender_Total,75 years,Marital_Total,2025Q4,56276 +All Denmark,Gender_Total,75 years,Marital_Total,2026Q1,56099 +All Denmark,Gender_Total,75 years,Never married,2025Q4,4574 +All Denmark,Gender_Total,75 years,Never married,2026Q1,4652 +All Denmark,Gender_Total,75 years,Married/separated,2025Q4,34124 +All Denmark,Gender_Total,75 years,Married/separated,2026Q1,33851 +All Denmark,Gender_Total,75 years,Widowed,2025Q4,8875 +All Denmark,Gender_Total,75 years,Widowed,2026Q1,8710 +All Denmark,Gender_Total,75 years,Divorced,2025Q4,8703 +All Denmark,Gender_Total,75 years,Divorced,2026Q1,8886 +All Denmark,Gender_Total,76 years,Marital_Total,2025Q4,54988 +All Denmark,Gender_Total,76 years,Marital_Total,2026Q1,54382 +All Denmark,Gender_Total,76 years,Never married,2025Q4,3990 +All Denmark,Gender_Total,76 years,Never married,2026Q1,4023 +All Denmark,Gender_Total,76 years,Married/separated,2025Q4,32965 +All Denmark,Gender_Total,76 years,Married/separated,2026Q1,32623 +All Denmark,Gender_Total,76 years,Widowed,2025Q4,9650 +All Denmark,Gender_Total,76 years,Widowed,2026Q1,9403 +All Denmark,Gender_Total,76 years,Divorced,2025Q4,8383 +All Denmark,Gender_Total,76 years,Divorced,2026Q1,8333 +All Denmark,Gender_Total,77 years,Marital_Total,2025Q4,55979 +All Denmark,Gender_Total,77 years,Marital_Total,2026Q1,55843 +All Denmark,Gender_Total,77 years,Never married,2025Q4,3617 +All Denmark,Gender_Total,77 years,Never married,2026Q1,3716 +All Denmark,Gender_Total,77 years,Married/separated,2025Q4,33330 +All Denmark,Gender_Total,77 years,Married/separated,2026Q1,33077 +All Denmark,Gender_Total,77 years,Widowed,2025Q4,10760 +All Denmark,Gender_Total,77 years,Widowed,2026Q1,10845 +All Denmark,Gender_Total,77 years,Divorced,2025Q4,8272 +All Denmark,Gender_Total,77 years,Divorced,2026Q1,8205 +All Denmark,Gender_Total,78 years,Marital_Total,2025Q4,58085 +All Denmark,Gender_Total,78 years,Marital_Total,2026Q1,57238 +All Denmark,Gender_Total,78 years,Never married,2025Q4,3343 +All Denmark,Gender_Total,78 years,Never married,2026Q1,3369 +All Denmark,Gender_Total,78 years,Married/separated,2025Q4,33958 +All Denmark,Gender_Total,78 years,Married/separated,2026Q1,33386 +All Denmark,Gender_Total,78 years,Widowed,2025Q4,12342 +All Denmark,Gender_Total,78 years,Widowed,2026Q1,12111 +All Denmark,Gender_Total,78 years,Divorced,2025Q4,8442 +All Denmark,Gender_Total,78 years,Divorced,2026Q1,8372 +All Denmark,Gender_Total,79 years,Marital_Total,2025Q4,56916 +All Denmark,Gender_Total,79 years,Marital_Total,2026Q1,56763 +All Denmark,Gender_Total,79 years,Never married,2025Q4,3019 +All Denmark,Gender_Total,79 years,Never married,2026Q1,3026 +All Denmark,Gender_Total,79 years,Married/separated,2025Q4,32586 +All Denmark,Gender_Total,79 years,Married/separated,2026Q1,32559 +All Denmark,Gender_Total,79 years,Widowed,2025Q4,13338 +All Denmark,Gender_Total,79 years,Widowed,2026Q1,13161 +All Denmark,Gender_Total,79 years,Divorced,2025Q4,7973 +All Denmark,Gender_Total,79 years,Divorced,2026Q1,8017 +All Denmark,Gender_Total,80 years,Marital_Total,2025Q4,51765 +All Denmark,Gender_Total,80 years,Marital_Total,2026Q1,52333 +All Denmark,Gender_Total,80 years,Never married,2025Q4,2453 +All Denmark,Gender_Total,80 years,Never married,2026Q1,2522 +All Denmark,Gender_Total,80 years,Married/separated,2025Q4,28693 +All Denmark,Gender_Total,80 years,Married/separated,2026Q1,29042 +All Denmark,Gender_Total,80 years,Widowed,2025Q4,13422 +All Denmark,Gender_Total,80 years,Widowed,2026Q1,13562 +All Denmark,Gender_Total,80 years,Divorced,2025Q4,7197 +All Denmark,Gender_Total,80 years,Divorced,2026Q1,7207 +All Denmark,Gender_Total,81 years,Marital_Total,2025Q4,46398 +All Denmark,Gender_Total,81 years,Marital_Total,2026Q1,47058 +All Denmark,Gender_Total,81 years,Never married,2025Q4,2113 +All Denmark,Gender_Total,81 years,Never married,2026Q1,2148 +All Denmark,Gender_Total,81 years,Married/separated,2025Q4,24562 +All Denmark,Gender_Total,81 years,Married/separated,2026Q1,25028 +All Denmark,Gender_Total,81 years,Widowed,2025Q4,13571 +All Denmark,Gender_Total,81 years,Widowed,2026Q1,13544 +All Denmark,Gender_Total,81 years,Divorced,2025Q4,6152 +All Denmark,Gender_Total,81 years,Divorced,2026Q1,6338 +All Denmark,Gender_Total,82 years,Marital_Total,2025Q4,40336 +All Denmark,Gender_Total,82 years,Marital_Total,2026Q1,41172 +All Denmark,Gender_Total,82 years,Never married,2025Q4,1640 +All Denmark,Gender_Total,82 years,Never married,2026Q1,1717 +All Denmark,Gender_Total,82 years,Married/separated,2025Q4,20508 +All Denmark,Gender_Total,82 years,Married/separated,2026Q1,20761 +All Denmark,Gender_Total,82 years,Widowed,2025Q4,12846 +All Denmark,Gender_Total,82 years,Widowed,2026Q1,13229 +All Denmark,Gender_Total,82 years,Divorced,2025Q4,5342 +All Denmark,Gender_Total,82 years,Divorced,2026Q1,5465 +All Denmark,Gender_Total,83 years,Marital_Total,2025Q4,35755 +All Denmark,Gender_Total,83 years,Marital_Total,2026Q1,36447 +All Denmark,Gender_Total,83 years,Never married,2025Q4,1392 +All Denmark,Gender_Total,83 years,Never married,2026Q1,1425 +All Denmark,Gender_Total,83 years,Married/separated,2025Q4,17182 +All Denmark,Gender_Total,83 years,Married/separated,2026Q1,17610 +All Denmark,Gender_Total,83 years,Widowed,2025Q4,12574 +All Denmark,Gender_Total,83 years,Widowed,2026Q1,12676 +All Denmark,Gender_Total,83 years,Divorced,2025Q4,4607 +All Denmark,Gender_Total,83 years,Divorced,2026Q1,4736 +All Denmark,Gender_Total,84 years,Marital_Total,2025Q4,29748 +All Denmark,Gender_Total,84 years,Marital_Total,2026Q1,30341 +All Denmark,Gender_Total,84 years,Never married,2025Q4,1126 +All Denmark,Gender_Total,84 years,Never married,2026Q1,1156 +All Denmark,Gender_Total,84 years,Married/separated,2025Q4,13607 +All Denmark,Gender_Total,84 years,Married/separated,2026Q1,13947 +All Denmark,Gender_Total,84 years,Widowed,2025Q4,11340 +All Denmark,Gender_Total,84 years,Widowed,2026Q1,11549 +All Denmark,Gender_Total,84 years,Divorced,2025Q4,3675 +All Denmark,Gender_Total,84 years,Divorced,2026Q1,3689 +All Denmark,Gender_Total,85 years,Marital_Total,2025Q4,27115 +All Denmark,Gender_Total,85 years,Marital_Total,2026Q1,27108 +All Denmark,Gender_Total,85 years,Never married,2025Q4,1011 +All Denmark,Gender_Total,85 years,Never married,2026Q1,995 +All Denmark,Gender_Total,85 years,Married/separated,2025Q4,11547 +All Denmark,Gender_Total,85 years,Married/separated,2026Q1,11617 +All Denmark,Gender_Total,85 years,Widowed,2025Q4,11346 +All Denmark,Gender_Total,85 years,Widowed,2026Q1,11239 +All Denmark,Gender_Total,85 years,Divorced,2025Q4,3211 +All Denmark,Gender_Total,85 years,Divorced,2026Q1,3257 +All Denmark,Gender_Total,86 years,Marital_Total,2025Q4,23620 +All Denmark,Gender_Total,86 years,Marital_Total,2026Q1,23740 +All Denmark,Gender_Total,86 years,Never married,2025Q4,866 +All Denmark,Gender_Total,86 years,Never married,2026Q1,862 +All Denmark,Gender_Total,86 years,Married/separated,2025Q4,9369 +All Denmark,Gender_Total,86 years,Married/separated,2026Q1,9360 +All Denmark,Gender_Total,86 years,Widowed,2025Q4,10669 +All Denmark,Gender_Total,86 years,Widowed,2026Q1,10773 +All Denmark,Gender_Total,86 years,Divorced,2025Q4,2716 +All Denmark,Gender_Total,86 years,Divorced,2026Q1,2745 +All Denmark,Gender_Total,87 years,Marital_Total,2025Q4,20846 +All Denmark,Gender_Total,87 years,Marital_Total,2026Q1,20993 +All Denmark,Gender_Total,87 years,Never married,2025Q4,728 +All Denmark,Gender_Total,87 years,Never married,2026Q1,739 +All Denmark,Gender_Total,87 years,Married/separated,2025Q4,7607 +All Denmark,Gender_Total,87 years,Married/separated,2026Q1,7710 +All Denmark,Gender_Total,87 years,Widowed,2025Q4,10268 +All Denmark,Gender_Total,87 years,Widowed,2026Q1,10225 +All Denmark,Gender_Total,87 years,Divorced,2025Q4,2243 +All Denmark,Gender_Total,87 years,Divorced,2026Q1,2319 +All Denmark,Gender_Total,88 years,Marital_Total,2025Q4,17495 +All Denmark,Gender_Total,88 years,Marital_Total,2026Q1,17770 +All Denmark,Gender_Total,88 years,Never married,2025Q4,613 +All Denmark,Gender_Total,88 years,Never married,2026Q1,635 +All Denmark,Gender_Total,88 years,Married/separated,2025Q4,5787 +All Denmark,Gender_Total,88 years,Married/separated,2026Q1,5851 +All Denmark,Gender_Total,88 years,Widowed,2025Q4,9308 +All Denmark,Gender_Total,88 years,Widowed,2026Q1,9473 +All Denmark,Gender_Total,88 years,Divorced,2025Q4,1787 +All Denmark,Gender_Total,88 years,Divorced,2026Q1,1811 +All Denmark,Gender_Total,89 years,Marital_Total,2025Q4,14410 +All Denmark,Gender_Total,89 years,Marital_Total,2026Q1,14619 +All Denmark,Gender_Total,89 years,Never married,2025Q4,480 +All Denmark,Gender_Total,89 years,Never married,2026Q1,473 +All Denmark,Gender_Total,89 years,Married/separated,2025Q4,4322 +All Denmark,Gender_Total,89 years,Married/separated,2026Q1,4421 +All Denmark,Gender_Total,89 years,Widowed,2025Q4,8238 +All Denmark,Gender_Total,89 years,Widowed,2026Q1,8315 +All Denmark,Gender_Total,89 years,Divorced,2025Q4,1370 +All Denmark,Gender_Total,89 years,Divorced,2026Q1,1410 +All Denmark,Gender_Total,90 years,Marital_Total,2025Q4,11820 +All Denmark,Gender_Total,90 years,Marital_Total,2026Q1,11718 +All Denmark,Gender_Total,90 years,Never married,2025Q4,372 +All Denmark,Gender_Total,90 years,Never married,2026Q1,380 +All Denmark,Gender_Total,90 years,Married/separated,2025Q4,3109 +All Denmark,Gender_Total,90 years,Married/separated,2026Q1,3151 +All Denmark,Gender_Total,90 years,Widowed,2025Q4,7215 +All Denmark,Gender_Total,90 years,Widowed,2026Q1,7098 +All Denmark,Gender_Total,90 years,Divorced,2025Q4,1124 +All Denmark,Gender_Total,90 years,Divorced,2026Q1,1089 +All Denmark,Gender_Total,91 years,Marital_Total,2025Q4,9280 +All Denmark,Gender_Total,91 years,Marital_Total,2026Q1,9383 +All Denmark,Gender_Total,91 years,Never married,2025Q4,266 +All Denmark,Gender_Total,91 years,Never married,2026Q1,280 +All Denmark,Gender_Total,91 years,Married/separated,2025Q4,2100 +All Denmark,Gender_Total,91 years,Married/separated,2026Q1,2116 +All Denmark,Gender_Total,91 years,Widowed,2025Q4,6077 +All Denmark,Gender_Total,91 years,Widowed,2026Q1,6129 +All Denmark,Gender_Total,91 years,Divorced,2025Q4,837 +All Denmark,Gender_Total,91 years,Divorced,2026Q1,858 +All Denmark,Gender_Total,92 years,Marital_Total,2025Q4,7315 +All Denmark,Gender_Total,92 years,Marital_Total,2026Q1,7436 +All Denmark,Gender_Total,92 years,Never married,2025Q4,258 +All Denmark,Gender_Total,92 years,Never married,2026Q1,241 +All Denmark,Gender_Total,92 years,Married/separated,2025Q4,1476 +All Denmark,Gender_Total,92 years,Married/separated,2026Q1,1540 +All Denmark,Gender_Total,92 years,Widowed,2025Q4,4996 +All Denmark,Gender_Total,92 years,Widowed,2026Q1,5039 +All Denmark,Gender_Total,92 years,Divorced,2025Q4,585 +All Denmark,Gender_Total,92 years,Divorced,2026Q1,616 +All Denmark,Gender_Total,93 years,Marital_Total,2025Q4,5665 +All Denmark,Gender_Total,93 years,Marital_Total,2026Q1,5721 +All Denmark,Gender_Total,93 years,Never married,2025Q4,204 +All Denmark,Gender_Total,93 years,Never married,2026Q1,193 +All Denmark,Gender_Total,93 years,Married/separated,2025Q4,1017 +All Denmark,Gender_Total,93 years,Married/separated,2026Q1,1003 +All Denmark,Gender_Total,93 years,Widowed,2025Q4,4006 +All Denmark,Gender_Total,93 years,Widowed,2026Q1,4074 +All Denmark,Gender_Total,93 years,Divorced,2025Q4,438 +All Denmark,Gender_Total,93 years,Divorced,2026Q1,451 +All Denmark,Gender_Total,94 years,Marital_Total,2025Q4,4338 +All Denmark,Gender_Total,94 years,Marital_Total,2026Q1,4287 +All Denmark,Gender_Total,94 years,Never married,2025Q4,150 +All Denmark,Gender_Total,94 years,Never married,2026Q1,175 +All Denmark,Gender_Total,94 years,Married/separated,2025Q4,603 +All Denmark,Gender_Total,94 years,Married/separated,2026Q1,624 +All Denmark,Gender_Total,94 years,Widowed,2025Q4,3252 +All Denmark,Gender_Total,94 years,Widowed,2026Q1,3159 +All Denmark,Gender_Total,94 years,Divorced,2025Q4,333 +All Denmark,Gender_Total,94 years,Divorced,2026Q1,329 +All Denmark,Gender_Total,95 years,Marital_Total,2025Q4,3220 +All Denmark,Gender_Total,95 years,Marital_Total,2026Q1,3265 +All Denmark,Gender_Total,95 years,Never married,2025Q4,116 +All Denmark,Gender_Total,95 years,Never married,2026Q1,113 +All Denmark,Gender_Total,95 years,Married/separated,2025Q4,378 +All Denmark,Gender_Total,95 years,Married/separated,2026Q1,389 +All Denmark,Gender_Total,95 years,Widowed,2025Q4,2485 +All Denmark,Gender_Total,95 years,Widowed,2026Q1,2527 +All Denmark,Gender_Total,95 years,Divorced,2025Q4,241 +All Denmark,Gender_Total,95 years,Divorced,2026Q1,236 +All Denmark,Gender_Total,96 years,Marital_Total,2025Q4,2380 +All Denmark,Gender_Total,96 years,Marital_Total,2026Q1,2359 +All Denmark,Gender_Total,96 years,Never married,2025Q4,88 +All Denmark,Gender_Total,96 years,Never married,2026Q1,91 +All Denmark,Gender_Total,96 years,Married/separated,2025Q4,227 +All Denmark,Gender_Total,96 years,Married/separated,2026Q1,236 +All Denmark,Gender_Total,96 years,Widowed,2025Q4,1878 +All Denmark,Gender_Total,96 years,Widowed,2026Q1,1855 +All Denmark,Gender_Total,96 years,Divorced,2025Q4,187 +All Denmark,Gender_Total,96 years,Divorced,2026Q1,177 +All Denmark,Gender_Total,97 years,Marital_Total,2025Q4,1712 +All Denmark,Gender_Total,97 years,Marital_Total,2026Q1,1754 +All Denmark,Gender_Total,97 years,Never married,2025Q4,64 +All Denmark,Gender_Total,97 years,Never married,2026Q1,65 +All Denmark,Gender_Total,97 years,Married/separated,2025Q4,137 +All Denmark,Gender_Total,97 years,Married/separated,2026Q1,138 +All Denmark,Gender_Total,97 years,Widowed,2025Q4,1411 +All Denmark,Gender_Total,97 years,Widowed,2026Q1,1433 +All Denmark,Gender_Total,97 years,Divorced,2025Q4,100 +All Denmark,Gender_Total,97 years,Divorced,2026Q1,118 +All Denmark,Gender_Total,98 years,Marital_Total,2025Q4,1174 +All Denmark,Gender_Total,98 years,Marital_Total,2026Q1,1136 +All Denmark,Gender_Total,98 years,Never married,2025Q4,53 +All Denmark,Gender_Total,98 years,Never married,2026Q1,47 +All Denmark,Gender_Total,98 years,Married/separated,2025Q4,68 +All Denmark,Gender_Total,98 years,Married/separated,2026Q1,66 +All Denmark,Gender_Total,98 years,Widowed,2025Q4,989 +All Denmark,Gender_Total,98 years,Widowed,2026Q1,960 diff --git a/statvar_imports/denmark_demographics/test_data/population_quarterly_region_time_marital_status_output.csv b/statvar_imports/denmark_demographics/test_data/population_quarterly_region_time_marital_status_output.csv new file mode 100644 index 0000000000..6f87a93a1e --- /dev/null +++ b/statvar_imports/denmark_demographics/test_data/population_quarterly_region_time_marital_status_output.csv @@ -0,0 +1,999 @@ +observationDate,value,observationAbout,variableMeasured +2025-12,6019866,country/DNK,dcid:Count_Person +2026-03,6025603,country/DNK,dcid:Count_Person +2025-12,2992359,country/DNK,dcid:Count_Person_NeverMarried +2026-03,2999169,country/DNK,dcid:Count_Person_NeverMarried +2025-12,2169022,country/DNK,dcid:Count_Person_MarriedOrSeparated +2026-03,2166240,country/DNK,dcid:Count_Person_MarriedOrSeparated +2025-12,285543,country/DNK,dcid:Count_Person_Widowed +2026-03,285498,country/DNK,dcid:Count_Person_Widowed +2025-12,572942,country/DNK,dcid:Count_Person_Divorced +2026-03,574696,country/DNK,dcid:Count_Person_Divorced +2025-12,59356,country/DNK,dcid:Count_Person_Years0 +2026-03,59649,country/DNK,dcid:Count_Person_Years0 +2025-12,59356,country/DNK,dcid:Count_Person_Years0_NeverMarried +2026-03,59649,country/DNK,dcid:Count_Person_Years0_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years0_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years0_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years0_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years0_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years0_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years0_Divorced +2025-12,57525,country/DNK,dcid:Count_Person_Years1 +2026-03,57711,country/DNK,dcid:Count_Person_Years1 +2025-12,57525,country/DNK,dcid:Count_Person_Years1_NeverMarried +2026-03,57711,country/DNK,dcid:Count_Person_Years1_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years1_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years1_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years1_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years1_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years1_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years1_Divorced +2025-12,58512,country/DNK,dcid:Count_Person_Years2 +2026-03,58350,country/DNK,dcid:Count_Person_Years2 +2025-12,58512,country/DNK,dcid:Count_Person_Years2_NeverMarried +2026-03,58350,country/DNK,dcid:Count_Person_Years2_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years2_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years2_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years2_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years2_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years2_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years2_Divorced +2025-12,61417,country/DNK,dcid:Count_Person_Years3 +2026-03,59630,country/DNK,dcid:Count_Person_Years3 +2025-12,61417,country/DNK,dcid:Count_Person_Years3_NeverMarried +2026-03,59630,country/DNK,dcid:Count_Person_Years3_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years3_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years3_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years3_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years3_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years3_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years3_Divorced +2025-12,64050,country/DNK,dcid:Count_Person_Years4 +2026-03,65064,country/DNK,dcid:Count_Person_Years4 +2025-12,64050,country/DNK,dcid:Count_Person_Years4_NeverMarried +2026-03,65064,country/DNK,dcid:Count_Person_Years4_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years4_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years4_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years4_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years4_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years4_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years4_Divorced +2025-12,63043,country/DNK,dcid:Count_Person_Years5 +2026-03,62909,country/DNK,dcid:Count_Person_Years5 +2025-12,63043,country/DNK,dcid:Count_Person_Years5_NeverMarried +2026-03,62909,country/DNK,dcid:Count_Person_Years5_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years5_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years5_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years5_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years5_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years5_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years5_Divorced +2025-12,63072,country/DNK,dcid:Count_Person_Years6 +2026-03,63143,country/DNK,dcid:Count_Person_Years6 +2025-12,63072,country/DNK,dcid:Count_Person_Years6_NeverMarried +2026-03,63143,country/DNK,dcid:Count_Person_Years6_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years6_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years6_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years6_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years6_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years6_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years6_Divorced +2025-12,63866,country/DNK,dcid:Count_Person_Years7 +2026-03,63296,country/DNK,dcid:Count_Person_Years7 +2025-12,63866,country/DNK,dcid:Count_Person_Years7_NeverMarried +2026-03,63296,country/DNK,dcid:Count_Person_Years7_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years7_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years7_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years7_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years7_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years7_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years7_Divorced +2025-12,63388,country/DNK,dcid:Count_Person_Years8 +2026-03,63682,country/DNK,dcid:Count_Person_Years8 +2025-12,63388,country/DNK,dcid:Count_Person_Years8_NeverMarried +2026-03,63682,country/DNK,dcid:Count_Person_Years8_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years8_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years8_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years8_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years8_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years8_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years8_Divorced +2025-12,64108,country/DNK,dcid:Count_Person_Years9 +2026-03,64317,country/DNK,dcid:Count_Person_Years9 +2025-12,64108,country/DNK,dcid:Count_Person_Years9_NeverMarried +2026-03,64317,country/DNK,dcid:Count_Person_Years9_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years9_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years9_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years9_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years9_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years9_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years9_Divorced +2025-12,60786,country/DNK,dcid:Count_Person_Years10 +2026-03,61519,country/DNK,dcid:Count_Person_Years10 +2025-12,60786,country/DNK,dcid:Count_Person_Years10_NeverMarried +2026-03,61519,country/DNK,dcid:Count_Person_Years10_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years10_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years10_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years10_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years10_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years10_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years10_Divorced +2025-12,60226,country/DNK,dcid:Count_Person_Years11 +2026-03,60759,country/DNK,dcid:Count_Person_Years11 +2025-12,60226,country/DNK,dcid:Count_Person_Years11_NeverMarried +2026-03,60759,country/DNK,dcid:Count_Person_Years11_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years11_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years11_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years11_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years11_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years11_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years11_Divorced +2025-12,61031,country/DNK,dcid:Count_Person_Years12 +2026-03,60212,country/DNK,dcid:Count_Person_Years12 +2025-12,61031,country/DNK,dcid:Count_Person_Years12_NeverMarried +2026-03,60212,country/DNK,dcid:Count_Person_Years12_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years12_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years12_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years12_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years12_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years12_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years12_Divorced +2025-12,62303,country/DNK,dcid:Count_Person_Years13 +2026-03,62667,country/DNK,dcid:Count_Person_Years13 +2025-12,62303,country/DNK,dcid:Count_Person_Years13_NeverMarried +2026-03,62667,country/DNK,dcid:Count_Person_Years13_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years13_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years13_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years13_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years13_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years13_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years13_Divorced +2025-12,65206,country/DNK,dcid:Count_Person_Years14 +2026-03,63886,country/DNK,dcid:Count_Person_Years14 +2025-12,65206,country/DNK,dcid:Count_Person_Years14_NeverMarried +2026-03,63886,country/DNK,dcid:Count_Person_Years14_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years14_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years14_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years14_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years14_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years14_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years14_Divorced +2025-12,68618,country/DNK,dcid:Count_Person_Years15 +2026-03,68577,country/DNK,dcid:Count_Person_Years15 +2025-12,68617,country/DNK,dcid:Count_Person_Years15_NeverMarried +2026-03,68576,country/DNK,dcid:Count_Person_Years15_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years15_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years15_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years15_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years15_Widowed +2025-12,1,country/DNK,dcid:Count_Person_Years15_Divorced +2026-03,1,country/DNK,dcid:Count_Person_Years15_Divorced +2025-12,69559,country/DNK,dcid:Count_Person_Years16 +2026-03,68983,country/DNK,dcid:Count_Person_Years16 +2025-12,69559,country/DNK,dcid:Count_Person_Years16_NeverMarried +2026-03,68983,country/DNK,dcid:Count_Person_Years16_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years16_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years16_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years16_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years16_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years16_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years16_Divorced +2025-12,71733,country/DNK,dcid:Count_Person_Years17 +2026-03,71558,country/DNK,dcid:Count_Person_Years17 +2025-12,71733,country/DNK,dcid:Count_Person_Years17_NeverMarried +2026-03,71558,country/DNK,dcid:Count_Person_Years17_NeverMarried +2025-12,0,country/DNK,dcid:Count_Person_Years17_MarriedOrSeparated +2026-03,0,country/DNK,dcid:Count_Person_Years17_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years17_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years17_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years17_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years17_Divorced +2025-12,70734,country/DNK,dcid:Count_Person_Years18 +2026-03,71176,country/DNK,dcid:Count_Person_Years18 +2025-12,70719,country/DNK,dcid:Count_Person_Years18_NeverMarried +2026-03,71150,country/DNK,dcid:Count_Person_Years18_NeverMarried +2025-12,15,country/DNK,dcid:Count_Person_Years18_MarriedOrSeparated +2026-03,26,country/DNK,dcid:Count_Person_Years18_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years18_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years18_Widowed +2025-12,0,country/DNK,dcid:Count_Person_Years18_Divorced +2026-03,0,country/DNK,dcid:Count_Person_Years18_Divorced +2025-12,72361,country/DNK,dcid:Count_Person_Years19 +2026-03,72659,country/DNK,dcid:Count_Person_Years19 +2025-12,72266,country/DNK,dcid:Count_Person_Years19_NeverMarried +2026-03,72566,country/DNK,dcid:Count_Person_Years19_NeverMarried +2025-12,92,country/DNK,dcid:Count_Person_Years19_MarriedOrSeparated +2026-03,90,country/DNK,dcid:Count_Person_Years19_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years19_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years19_Widowed +2025-12,3,country/DNK,dcid:Count_Person_Years19_Divorced +2026-03,3,country/DNK,dcid:Count_Person_Years19_Divorced +2025-12,74176,country/DNK,dcid:Count_Person_Years20 +2026-03,72838,country/DNK,dcid:Count_Person_Years20 +2025-12,73793,country/DNK,dcid:Count_Person_Years20_NeverMarried +2026-03,72487,country/DNK,dcid:Count_Person_Years20_NeverMarried +2025-12,371,country/DNK,dcid:Count_Person_Years20_MarriedOrSeparated +2026-03,343,country/DNK,dcid:Count_Person_Years20_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years20_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years20_Widowed +2025-12,12,country/DNK,dcid:Count_Person_Years20_Divorced +2026-03,8,country/DNK,dcid:Count_Person_Years20_Divorced +2025-12,74599,country/DNK,dcid:Count_Person_Years21 +2026-03,74748,country/DNK,dcid:Count_Person_Years21 +2025-12,73540,country/DNK,dcid:Count_Person_Years21_NeverMarried +2026-03,73760,country/DNK,dcid:Count_Person_Years21_NeverMarried +2025-12,1033,country/DNK,dcid:Count_Person_Years21_MarriedOrSeparated +2026-03,955,country/DNK,dcid:Count_Person_Years21_MarriedOrSeparated +2025-12,0,country/DNK,dcid:Count_Person_Years21_Widowed +2026-03,0,country/DNK,dcid:Count_Person_Years21_Widowed +2025-12,26,country/DNK,dcid:Count_Person_Years21_Divorced +2026-03,33,country/DNK,dcid:Count_Person_Years21_Divorced +2025-12,75595,country/DNK,dcid:Count_Person_Years22 +2026-03,76243,country/DNK,dcid:Count_Person_Years22 +2025-12,73678,country/DNK,dcid:Count_Person_Years22_NeverMarried +2026-03,74323,country/DNK,dcid:Count_Person_Years22_NeverMarried +2025-12,1855,country/DNK,dcid:Count_Person_Years22_MarriedOrSeparated +2026-03,1858,country/DNK,dcid:Count_Person_Years22_MarriedOrSeparated +2025-12,1,country/DNK,dcid:Count_Person_Years22_Widowed +2026-03,1,country/DNK,dcid:Count_Person_Years22_Widowed +2025-12,61,country/DNK,dcid:Count_Person_Years22_Divorced +2026-03,61,country/DNK,dcid:Count_Person_Years22_Divorced +2025-12,76535,country/DNK,dcid:Count_Person_Years23 +2026-03,76851,country/DNK,dcid:Count_Person_Years23 +2025-12,73797,country/DNK,dcid:Count_Person_Years23_NeverMarried +2026-03,74116,country/DNK,dcid:Count_Person_Years23_NeverMarried +2025-12,2613,country/DNK,dcid:Count_Person_Years23_MarriedOrSeparated +2026-03,2622,country/DNK,dcid:Count_Person_Years23_MarriedOrSeparated +2025-12,4,country/DNK,dcid:Count_Person_Years23_Widowed +2026-03,3,country/DNK,dcid:Count_Person_Years23_Widowed +2025-12,121,country/DNK,dcid:Count_Person_Years23_Divorced +2026-03,110,country/DNK,dcid:Count_Person_Years23_Divorced +2025-12,78801,country/DNK,dcid:Count_Person_Years24 +2026-03,78225,country/DNK,dcid:Count_Person_Years24 +2025-12,74951,country/DNK,dcid:Count_Person_Years24_NeverMarried +2026-03,74404,country/DNK,dcid:Count_Person_Years24_NeverMarried +2025-12,3675,country/DNK,dcid:Count_Person_Years24_MarriedOrSeparated +2026-03,3633,country/DNK,dcid:Count_Person_Years24_MarriedOrSeparated +2025-12,4,country/DNK,dcid:Count_Person_Years24_Widowed +2026-03,4,country/DNK,dcid:Count_Person_Years24_Widowed +2025-12,171,country/DNK,dcid:Count_Person_Years24_Divorced +2026-03,184,country/DNK,dcid:Count_Person_Years24_Divorced +2025-12,79882,country/DNK,dcid:Count_Person_Years25 +2026-03,80748,country/DNK,dcid:Count_Person_Years25 +2025-12,74566,country/DNK,dcid:Count_Person_Years25_NeverMarried +2026-03,75396,country/DNK,dcid:Count_Person_Years25_NeverMarried +2025-12,5029,country/DNK,dcid:Count_Person_Years25_MarriedOrSeparated +2026-03,5055,country/DNK,dcid:Count_Person_Years25_MarriedOrSeparated +2025-12,3,country/DNK,dcid:Count_Person_Years25_Widowed +2026-03,5,country/DNK,dcid:Count_Person_Years25_Widowed +2025-12,284,country/DNK,dcid:Count_Person_Years25_Divorced +2026-03,292,country/DNK,dcid:Count_Person_Years25_Divorced +2025-12,80283,country/DNK,dcid:Count_Person_Years26 +2026-03,79922,country/DNK,dcid:Count_Person_Years26 +2025-12,72701,country/DNK,dcid:Count_Person_Years26_NeverMarried +2026-03,72566,country/DNK,dcid:Count_Person_Years26_NeverMarried +2025-12,7158,country/DNK,dcid:Count_Person_Years26_MarriedOrSeparated +2026-03,6952,country/DNK,dcid:Count_Person_Years26_MarriedOrSeparated +2025-12,10,country/DNK,dcid:Count_Person_Years26_Widowed +2026-03,9,country/DNK,dcid:Count_Person_Years26_Widowed +2025-12,414,country/DNK,dcid:Count_Person_Years26_Divorced +2026-03,395,country/DNK,dcid:Count_Person_Years26_Divorced +2025-12,80364,country/DNK,dcid:Count_Person_Years27 +2026-03,80697,country/DNK,dcid:Count_Person_Years27 +2025-12,69857,country/DNK,dcid:Count_Person_Years27_NeverMarried +2026-03,70277,country/DNK,dcid:Count_Person_Years27_NeverMarried +2025-12,9861,country/DNK,dcid:Count_Person_Years27_MarriedOrSeparated +2026-03,9768,country/DNK,dcid:Count_Person_Years27_MarriedOrSeparated +2025-12,9,country/DNK,dcid:Count_Person_Years27_Widowed +2026-03,7,country/DNK,dcid:Count_Person_Years27_Widowed +2025-12,637,country/DNK,dcid:Count_Person_Years27_Divorced +2026-03,645,country/DNK,dcid:Count_Person_Years27_Divorced +2025-12,83381,country/DNK,dcid:Count_Person_Years28 +2026-03,82461,country/DNK,dcid:Count_Person_Years28 +2025-12,68832,country/DNK,dcid:Count_Person_Years28_NeverMarried +2026-03,68197,country/DNK,dcid:Count_Person_Years28_NeverMarried +2025-12,13610,country/DNK,dcid:Count_Person_Years28_MarriedOrSeparated +2026-03,13337,country/DNK,dcid:Count_Person_Years28_MarriedOrSeparated +2025-12,15,country/DNK,dcid:Count_Person_Years28_Widowed +2026-03,16,country/DNK,dcid:Count_Person_Years28_Widowed +2025-12,924,country/DNK,dcid:Count_Person_Years28_Divorced +2026-03,911,country/DNK,dcid:Count_Person_Years28_Divorced +2025-12,82382,country/DNK,dcid:Count_Person_Years29 +2026-03,82630,country/DNK,dcid:Count_Person_Years29 +2025-12,63773,country/DNK,dcid:Count_Person_Years29_NeverMarried +2026-03,64295,country/DNK,dcid:Count_Person_Years29_NeverMarried +2025-12,17280,country/DNK,dcid:Count_Person_Years29_MarriedOrSeparated +2026-03,17037,country/DNK,dcid:Count_Person_Years29_MarriedOrSeparated +2025-12,18,country/DNK,dcid:Count_Person_Years29_Widowed +2026-03,14,country/DNK,dcid:Count_Person_Years29_Widowed +2025-12,1311,country/DNK,dcid:Count_Person_Years29_Divorced +2026-03,1284,country/DNK,dcid:Count_Person_Years29_Divorced +2025-12,86137,country/DNK,dcid:Count_Person_Years30 +2026-03,85138,country/DNK,dcid:Count_Person_Years30 +2025-12,61907,country/DNK,dcid:Count_Person_Years30_NeverMarried +2026-03,61451,country/DNK,dcid:Count_Person_Years30_NeverMarried +2025-12,22475,country/DNK,dcid:Count_Person_Years30_MarriedOrSeparated +2026-03,21948,country/DNK,dcid:Count_Person_Years30_MarriedOrSeparated +2025-12,21,country/DNK,dcid:Count_Person_Years30_Widowed +2026-03,25,country/DNK,dcid:Count_Person_Years30_Widowed +2025-12,1734,country/DNK,dcid:Count_Person_Years30_Divorced +2026-03,1714,country/DNK,dcid:Count_Person_Years30_Divorced +2025-12,83762,country/DNK,dcid:Count_Person_Years31 +2026-03,85646,country/DNK,dcid:Count_Person_Years31 +2025-12,56227,country/DNK,dcid:Count_Person_Years31_NeverMarried +2026-03,57864,country/DNK,dcid:Count_Person_Years31_NeverMarried +2025-12,25414,country/DNK,dcid:Count_Person_Years31_MarriedOrSeparated +2026-03,25670,country/DNK,dcid:Count_Person_Years31_MarriedOrSeparated +2025-12,40,country/DNK,dcid:Count_Person_Years31_Widowed +2026-03,33,country/DNK,dcid:Count_Person_Years31_Widowed +2025-12,2081,country/DNK,dcid:Count_Person_Years31_Divorced +2026-03,2079,country/DNK,dcid:Count_Person_Years31_Divorced +2025-12,83595,country/DNK,dcid:Count_Person_Years32 +2026-03,83036,country/DNK,dcid:Count_Person_Years32 +2025-12,52027,country/DNK,dcid:Count_Person_Years32_NeverMarried +2026-03,51835,country/DNK,dcid:Count_Person_Years32_NeverMarried +2025-12,28893,country/DNK,dcid:Count_Person_Years32_MarriedOrSeparated +2026-03,28517,country/DNK,dcid:Count_Person_Years32_MarriedOrSeparated +2025-12,30,country/DNK,dcid:Count_Person_Years32_Widowed +2026-03,35,country/DNK,dcid:Count_Person_Years32_Widowed +2025-12,2645,country/DNK,dcid:Count_Person_Years32_Divorced +2026-03,2649,country/DNK,dcid:Count_Person_Years32_Divorced +2025-12,83309,country/DNK,dcid:Count_Person_Years33 +2026-03,84151,country/DNK,dcid:Count_Person_Years33 +2025-12,47968,country/DNK,dcid:Count_Person_Years33_NeverMarried +2026-03,48736,country/DNK,dcid:Count_Person_Years33_NeverMarried +2025-12,32184,country/DNK,dcid:Count_Person_Years33_MarriedOrSeparated +2026-03,32258,country/DNK,dcid:Count_Person_Years33_MarriedOrSeparated +2025-12,40,country/DNK,dcid:Count_Person_Years33_Widowed +2026-03,41,country/DNK,dcid:Count_Person_Years33_Widowed +2025-12,3117,country/DNK,dcid:Count_Person_Years33_Divorced +2026-03,3116,country/DNK,dcid:Count_Person_Years33_Divorced +2025-12,81212,country/DNK,dcid:Count_Person_Years34 +2026-03,81318,country/DNK,dcid:Count_Person_Years34 +2025-12,43651,country/DNK,dcid:Count_Person_Years34_NeverMarried +2026-03,43931,country/DNK,dcid:Count_Person_Years34_NeverMarried +2025-12,33792,country/DNK,dcid:Count_Person_Years34_MarriedOrSeparated +2026-03,33609,country/DNK,dcid:Count_Person_Years34_MarriedOrSeparated +2025-12,52,country/DNK,dcid:Count_Person_Years34_Widowed +2026-03,51,country/DNK,dcid:Count_Person_Years34_Widowed +2025-12,3717,country/DNK,dcid:Count_Person_Years34_Divorced +2026-03,3727,country/DNK,dcid:Count_Person_Years34_Divorced +2025-12,80681,country/DNK,dcid:Count_Person_Years35 +2026-03,81290,country/DNK,dcid:Count_Person_Years35 +2025-12,40502,country/DNK,dcid:Count_Person_Years35_NeverMarried +2026-03,40925,country/DNK,dcid:Count_Person_Years35_NeverMarried +2025-12,35869,country/DNK,dcid:Count_Person_Years35_MarriedOrSeparated +2026-03,35998,country/DNK,dcid:Count_Person_Years35_MarriedOrSeparated +2025-12,62,country/DNK,dcid:Count_Person_Years35_Widowed +2026-03,57,country/DNK,dcid:Count_Person_Years35_Widowed +2025-12,4248,country/DNK,dcid:Count_Person_Years35_Divorced +2026-03,4310,country/DNK,dcid:Count_Person_Years35_Divorced +2025-12,78325,country/DNK,dcid:Count_Person_Years36 +2026-03,79025,country/DNK,dcid:Count_Person_Years36 +2025-12,37003,country/DNK,dcid:Count_Person_Years36_NeverMarried +2026-03,37575,country/DNK,dcid:Count_Person_Years36_NeverMarried +2025-12,36543,country/DNK,dcid:Count_Person_Years36_MarriedOrSeparated +2026-03,36726,country/DNK,dcid:Count_Person_Years36_MarriedOrSeparated +2025-12,76,country/DNK,dcid:Count_Person_Years36_Widowed +2026-03,76,country/DNK,dcid:Count_Person_Years36_Widowed +2025-12,4703,country/DNK,dcid:Count_Person_Years36_Divorced +2026-03,4648,country/DNK,dcid:Count_Person_Years36_Divorced +2025-12,75621,country/DNK,dcid:Count_Person_Years37 +2026-03,76630,country/DNK,dcid:Count_Person_Years37 +2025-12,33250,country/DNK,dcid:Count_Person_Years37_NeverMarried +2026-03,33753,country/DNK,dcid:Count_Person_Years37_NeverMarried +2025-12,37110,country/DNK,dcid:Count_Person_Years37_MarriedOrSeparated +2026-03,37481,country/DNK,dcid:Count_Person_Years37_MarriedOrSeparated +2025-12,100,country/DNK,dcid:Count_Person_Years37_Widowed +2026-03,101,country/DNK,dcid:Count_Person_Years37_Widowed +2025-12,5161,country/DNK,dcid:Count_Person_Years37_Divorced +2026-03,5295,country/DNK,dcid:Count_Person_Years37_Divorced +2025-12,73301,country/DNK,dcid:Count_Person_Years38 +2026-03,73618,country/DNK,dcid:Count_Person_Years38 +2025-12,30158,country/DNK,dcid:Count_Person_Years38_NeverMarried +2026-03,30375,country/DNK,dcid:Count_Person_Years38_NeverMarried +2025-12,37413,country/DNK,dcid:Count_Person_Years38_MarriedOrSeparated +2026-03,37511,country/DNK,dcid:Count_Person_Years38_MarriedOrSeparated +2025-12,96,country/DNK,dcid:Count_Person_Years38_Widowed +2026-03,99,country/DNK,dcid:Count_Person_Years38_Widowed +2025-12,5634,country/DNK,dcid:Count_Person_Years38_Divorced +2026-03,5633,country/DNK,dcid:Count_Person_Years38_Divorced +2025-12,71982,country/DNK,dcid:Count_Person_Years39 +2026-03,72533,country/DNK,dcid:Count_Person_Years39 +2025-12,28276,country/DNK,dcid:Count_Person_Years39_NeverMarried +2026-03,28690,country/DNK,dcid:Count_Person_Years39_NeverMarried +2025-12,37532,country/DNK,dcid:Count_Person_Years39_MarriedOrSeparated +2026-03,37539,country/DNK,dcid:Count_Person_Years39_MarriedOrSeparated +2025-12,139,country/DNK,dcid:Count_Person_Years39_Widowed +2026-03,124,country/DNK,dcid:Count_Person_Years39_Widowed +2025-12,6035,country/DNK,dcid:Count_Person_Years39_Divorced +2026-03,6180,country/DNK,dcid:Count_Person_Years39_Divorced +2025-12,69881,country/DNK,dcid:Count_Person_Years40 +2026-03,70617,country/DNK,dcid:Count_Person_Years40 +2025-12,26074,country/DNK,dcid:Count_Person_Years40_NeverMarried +2026-03,26523,country/DNK,dcid:Count_Person_Years40_NeverMarried +2025-12,37094,country/DNK,dcid:Count_Person_Years40_MarriedOrSeparated +2026-03,37337,country/DNK,dcid:Count_Person_Years40_MarriedOrSeparated +2025-12,142,country/DNK,dcid:Count_Person_Years40_Widowed +2026-03,142,country/DNK,dcid:Count_Person_Years40_Widowed +2025-12,6571,country/DNK,dcid:Count_Person_Years40_Divorced +2026-03,6615,country/DNK,dcid:Count_Person_Years40_Divorced +2025-12,67770,country/DNK,dcid:Count_Person_Years41 +2026-03,68118,country/DNK,dcid:Count_Person_Years41 +2025-12,24017,country/DNK,dcid:Count_Person_Years41_NeverMarried +2026-03,24177,country/DNK,dcid:Count_Person_Years41_NeverMarried +2025-12,36646,country/DNK,dcid:Count_Person_Years41_MarriedOrSeparated +2026-03,36830,country/DNK,dcid:Count_Person_Years41_MarriedOrSeparated +2025-12,145,country/DNK,dcid:Count_Person_Years41_Widowed +2026-03,149,country/DNK,dcid:Count_Person_Years41_Widowed +2025-12,6962,country/DNK,dcid:Count_Person_Years41_Divorced +2026-03,6962,country/DNK,dcid:Count_Person_Years41_Divorced +2025-12,66606,country/DNK,dcid:Count_Person_Years42 +2026-03,66468,country/DNK,dcid:Count_Person_Years42 +2025-12,22508,country/DNK,dcid:Count_Person_Years42_NeverMarried +2026-03,22594,country/DNK,dcid:Count_Person_Years42_NeverMarried +2025-12,36493,country/DNK,dcid:Count_Person_Years42_MarriedOrSeparated +2026-03,36201,country/DNK,dcid:Count_Person_Years42_MarriedOrSeparated +2025-12,173,country/DNK,dcid:Count_Person_Years42_Widowed +2026-03,184,country/DNK,dcid:Count_Person_Years42_Widowed +2025-12,7432,country/DNK,dcid:Count_Person_Years42_Divorced +2026-03,7489,country/DNK,dcid:Count_Person_Years42_Divorced +2025-12,67055,country/DNK,dcid:Count_Person_Years43 +2026-03,67550,country/DNK,dcid:Count_Person_Years43 +2025-12,21668,country/DNK,dcid:Count_Person_Years43_NeverMarried +2026-03,22050,country/DNK,dcid:Count_Person_Years43_NeverMarried +2025-12,36972,country/DNK,dcid:Count_Person_Years43_MarriedOrSeparated +2026-03,37158,country/DNK,dcid:Count_Person_Years43_MarriedOrSeparated +2025-12,238,country/DNK,dcid:Count_Person_Years43_Widowed +2026-03,224,country/DNK,dcid:Count_Person_Years43_Widowed +2025-12,8177,country/DNK,dcid:Count_Person_Years43_Divorced +2026-03,8118,country/DNK,dcid:Count_Person_Years43_Divorced +2025-12,67339,country/DNK,dcid:Count_Person_Years44 +2026-03,66823,country/DNK,dcid:Count_Person_Years44 +2025-12,20941,country/DNK,dcid:Count_Person_Years44_NeverMarried +2026-03,20800,country/DNK,dcid:Count_Person_Years44_NeverMarried +2025-12,37438,country/DNK,dcid:Count_Person_Years44_MarriedOrSeparated +2026-03,37098,country/DNK,dcid:Count_Person_Years44_MarriedOrSeparated +2025-12,244,country/DNK,dcid:Count_Person_Years44_Widowed +2026-03,240,country/DNK,dcid:Count_Person_Years44_Widowed +2025-12,8716,country/DNK,dcid:Count_Person_Years44_Divorced +2026-03,8685,country/DNK,dcid:Count_Person_Years44_Divorced +2025-12,70783,country/DNK,dcid:Count_Person_Years45 +2026-03,70362,country/DNK,dcid:Count_Person_Years45 +2025-12,21064,country/DNK,dcid:Count_Person_Years45_NeverMarried +2026-03,21023,country/DNK,dcid:Count_Person_Years45_NeverMarried +2025-12,39561,country/DNK,dcid:Count_Person_Years45_MarriedOrSeparated +2026-03,39297,country/DNK,dcid:Count_Person_Years45_MarriedOrSeparated +2025-12,291,country/DNK,dcid:Count_Person_Years45_Widowed +2026-03,288,country/DNK,dcid:Count_Person_Years45_Widowed +2025-12,9867,country/DNK,dcid:Count_Person_Years45_Divorced +2026-03,9754,country/DNK,dcid:Count_Person_Years45_Divorced +2025-12,71134,country/DNK,dcid:Count_Person_Years46 +2026-03,71092,country/DNK,dcid:Count_Person_Years46 +2025-12,20121,country/DNK,dcid:Count_Person_Years46_NeverMarried +2026-03,20299,country/DNK,dcid:Count_Person_Years46_NeverMarried +2025-12,40005,country/DNK,dcid:Count_Person_Years46_MarriedOrSeparated +2026-03,39841,country/DNK,dcid:Count_Person_Years46_MarriedOrSeparated +2025-12,291,country/DNK,dcid:Count_Person_Years46_Widowed +2026-03,307,country/DNK,dcid:Count_Person_Years46_Widowed +2025-12,10717,country/DNK,dcid:Count_Person_Years46_Divorced +2026-03,10645,country/DNK,dcid:Count_Person_Years46_Divorced +2025-12,73041,country/DNK,dcid:Count_Person_Years47 +2026-03,72668,country/DNK,dcid:Count_Person_Years47 +2025-12,19829,country/DNK,dcid:Count_Person_Years47_NeverMarried +2026-03,19788,country/DNK,dcid:Count_Person_Years47_NeverMarried +2025-12,40830,country/DNK,dcid:Count_Person_Years47_MarriedOrSeparated +2026-03,40597,country/DNK,dcid:Count_Person_Years47_MarriedOrSeparated +2025-12,383,country/DNK,dcid:Count_Person_Years47_Widowed +2026-03,365,country/DNK,dcid:Count_Person_Years47_Widowed +2025-12,11999,country/DNK,dcid:Count_Person_Years47_Divorced +2026-03,11918,country/DNK,dcid:Count_Person_Years47_Divorced +2025-12,71746,country/DNK,dcid:Count_Person_Years48 +2026-03,72077,country/DNK,dcid:Count_Person_Years48 +2025-12,18801,country/DNK,dcid:Count_Person_Years48_NeverMarried +2026-03,18922,country/DNK,dcid:Count_Person_Years48_NeverMarried +2025-12,40226,country/DNK,dcid:Count_Person_Years48_MarriedOrSeparated +2026-03,40356,country/DNK,dcid:Count_Person_Years48_MarriedOrSeparated +2025-12,419,country/DNK,dcid:Count_Person_Years48_Widowed +2026-03,411,country/DNK,dcid:Count_Person_Years48_Widowed +2025-12,12300,country/DNK,dcid:Count_Person_Years48_Divorced +2026-03,12388,country/DNK,dcid:Count_Person_Years48_Divorced +2025-12,76213,country/DNK,dcid:Count_Person_Years49 +2026-03,74386,country/DNK,dcid:Count_Person_Years49 +2025-12,19421,country/DNK,dcid:Count_Person_Years49_NeverMarried +2026-03,19072,country/DNK,dcid:Count_Person_Years49_NeverMarried +2025-12,42479,country/DNK,dcid:Count_Person_Years49_MarriedOrSeparated +2026-03,41339,country/DNK,dcid:Count_Person_Years49_MarriedOrSeparated +2025-12,501,country/DNK,dcid:Count_Person_Years49_Widowed +2026-03,498,country/DNK,dcid:Count_Person_Years49_Widowed +2025-12,13812,country/DNK,dcid:Count_Person_Years49_Divorced +2026-03,13477,country/DNK,dcid:Count_Person_Years49_Divorced +2025-12,79826,country/DNK,dcid:Count_Person_Years50 +2026-03,79927,country/DNK,dcid:Count_Person_Years50 +2025-12,19535,country/DNK,dcid:Count_Person_Years50_NeverMarried +2026-03,19746,country/DNK,dcid:Count_Person_Years50_NeverMarried +2025-12,44960,country/DNK,dcid:Count_Person_Years50_MarriedOrSeparated +2026-03,44830,country/DNK,dcid:Count_Person_Years50_MarriedOrSeparated +2025-12,626,country/DNK,dcid:Count_Person_Years50_Widowed +2026-03,625,country/DNK,dcid:Count_Person_Years50_Widowed +2025-12,14705,country/DNK,dcid:Count_Person_Years50_Divorced +2026-03,14726,country/DNK,dcid:Count_Person_Years50_Divorced +2025-12,78228,country/DNK,dcid:Count_Person_Years51 +2026-03,78578,country/DNK,dcid:Count_Person_Years51 +2025-12,18508,country/DNK,dcid:Count_Person_Years51_NeverMarried +2026-03,18540,country/DNK,dcid:Count_Person_Years51_NeverMarried +2025-12,44273,country/DNK,dcid:Count_Person_Years51_MarriedOrSeparated +2026-03,44466,country/DNK,dcid:Count_Person_Years51_MarriedOrSeparated +2025-12,590,country/DNK,dcid:Count_Person_Years51_Widowed +2026-03,611,country/DNK,dcid:Count_Person_Years51_Widowed +2025-12,14857,country/DNK,dcid:Count_Person_Years51_Divorced +2026-03,14961,country/DNK,dcid:Count_Person_Years51_Divorced +2025-12,78183,country/DNK,dcid:Count_Person_Years52 +2026-03,77835,country/DNK,dcid:Count_Person_Years52 +2025-12,17840,country/DNK,dcid:Count_Person_Years52_NeverMarried +2026-03,17953,country/DNK,dcid:Count_Person_Years52_NeverMarried +2025-12,44202,country/DNK,dcid:Count_Person_Years52_MarriedOrSeparated +2026-03,43862,country/DNK,dcid:Count_Person_Years52_MarriedOrSeparated +2025-12,752,country/DNK,dcid:Count_Person_Years52_Widowed +2026-03,727,country/DNK,dcid:Count_Person_Years52_Widowed +2025-12,15389,country/DNK,dcid:Count_Person_Years52_Divorced +2026-03,15293,country/DNK,dcid:Count_Person_Years52_Divorced +2025-12,81764,country/DNK,dcid:Count_Person_Years53 +2026-03,81029,country/DNK,dcid:Count_Person_Years53 +2025-12,17961,country/DNK,dcid:Count_Person_Years53_NeverMarried +2026-03,17921,country/DNK,dcid:Count_Person_Years53_NeverMarried +2025-12,46333,country/DNK,dcid:Count_Person_Years53_MarriedOrSeparated +2026-03,45854,country/DNK,dcid:Count_Person_Years53_MarriedOrSeparated +2025-12,830,country/DNK,dcid:Count_Person_Years53_Widowed +2026-03,819,country/DNK,dcid:Count_Person_Years53_Widowed +2025-12,16640,country/DNK,dcid:Count_Person_Years53_Divorced +2026-03,16435,country/DNK,dcid:Count_Person_Years53_Divorced +2025-12,78596,country/DNK,dcid:Count_Person_Years54 +2026-03,79525,country/DNK,dcid:Count_Person_Years54 +2025-12,16756,country/DNK,dcid:Count_Person_Years54_NeverMarried +2026-03,17040,country/DNK,dcid:Count_Person_Years54_NeverMarried +2025-12,44898,country/DNK,dcid:Count_Person_Years54_MarriedOrSeparated +2026-03,45325,country/DNK,dcid:Count_Person_Years54_MarriedOrSeparated +2025-12,948,country/DNK,dcid:Count_Person_Years54_Widowed +2026-03,946,country/DNK,dcid:Count_Person_Years54_Widowed +2025-12,15994,country/DNK,dcid:Count_Person_Years54_Divorced +2026-03,16214,country/DNK,dcid:Count_Person_Years54_Divorced +2025-12,75576,country/DNK,dcid:Count_Person_Years55 +2026-03,76007,country/DNK,dcid:Count_Person_Years55 +2025-12,15467,country/DNK,dcid:Count_Person_Years55_NeverMarried +2026-03,15688,country/DNK,dcid:Count_Person_Years55_NeverMarried +2025-12,43472,country/DNK,dcid:Count_Person_Years55_MarriedOrSeparated +2026-03,43547,country/DNK,dcid:Count_Person_Years55_MarriedOrSeparated +2025-12,1004,country/DNK,dcid:Count_Person_Years55_Widowed +2026-03,1010,country/DNK,dcid:Count_Person_Years55_Widowed +2025-12,15633,country/DNK,dcid:Count_Person_Years55_Divorced +2026-03,15762,country/DNK,dcid:Count_Person_Years55_Divorced +2025-12,75623,country/DNK,dcid:Count_Person_Years56 +2026-03,75186,country/DNK,dcid:Count_Person_Years56 +2025-12,15273,country/DNK,dcid:Count_Person_Years56_NeverMarried +2026-03,15178,country/DNK,dcid:Count_Person_Years56_NeverMarried +2025-12,43438,country/DNK,dcid:Count_Person_Years56_MarriedOrSeparated +2026-03,43231,country/DNK,dcid:Count_Person_Years56_MarriedOrSeparated +2025-12,1140,country/DNK,dcid:Count_Person_Years56_Widowed +2026-03,1123,country/DNK,dcid:Count_Person_Years56_Widowed +2025-12,15772,country/DNK,dcid:Count_Person_Years56_Divorced +2026-03,15654,country/DNK,dcid:Count_Person_Years56_Divorced +2025-12,78666,country/DNK,dcid:Count_Person_Years57 +2026-03,77616,country/DNK,dcid:Count_Person_Years57 +2025-12,15394,country/DNK,dcid:Count_Person_Years57_NeverMarried +2026-03,15237,country/DNK,dcid:Count_Person_Years57_NeverMarried +2025-12,45381,country/DNK,dcid:Count_Person_Years57_MarriedOrSeparated +2026-03,44652,country/DNK,dcid:Count_Person_Years57_MarriedOrSeparated +2025-12,1297,country/DNK,dcid:Count_Person_Years57_Widowed +2026-03,1267,country/DNK,dcid:Count_Person_Years57_Widowed +2025-12,16594,country/DNK,dcid:Count_Person_Years57_Divorced +2026-03,16460,country/DNK,dcid:Count_Person_Years57_Divorced +2025-12,84620,country/DNK,dcid:Count_Person_Years58 +2026-03,82421,country/DNK,dcid:Count_Person_Years58 +2025-12,16241,country/DNK,dcid:Count_Person_Years58_NeverMarried +2026-03,15911,country/DNK,dcid:Count_Person_Years58_NeverMarried +2025-12,48788,country/DNK,dcid:Count_Person_Years58_MarriedOrSeparated +2026-03,47453,country/DNK,dcid:Count_Person_Years58_MarriedOrSeparated +2025-12,1634,country/DNK,dcid:Count_Person_Years58_Widowed +2026-03,1594,country/DNK,dcid:Count_Person_Years58_Widowed +2025-12,17957,country/DNK,dcid:Count_Person_Years58_Divorced +2026-03,17463,country/DNK,dcid:Count_Person_Years58_Divorced +2025-12,86791,country/DNK,dcid:Count_Person_Years59 +2026-03,87563,country/DNK,dcid:Count_Person_Years59 +2025-12,16060,country/DNK,dcid:Count_Person_Years59_NeverMarried +2026-03,16186,country/DNK,dcid:Count_Person_Years59_NeverMarried +2025-12,50473,country/DNK,dcid:Count_Person_Years59_MarriedOrSeparated +2026-03,50909,country/DNK,dcid:Count_Person_Years59_MarriedOrSeparated +2025-12,1934,country/DNK,dcid:Count_Person_Years59_Widowed +2026-03,1932,country/DNK,dcid:Count_Person_Years59_Widowed +2025-12,18324,country/DNK,dcid:Count_Person_Years59_Divorced +2026-03,18536,country/DNK,dcid:Count_Person_Years59_Divorced +2025-12,83887,country/DNK,dcid:Count_Person_Years60 +2026-03,84315,country/DNK,dcid:Count_Person_Years60 +2025-12,14991,country/DNK,dcid:Count_Person_Years60_NeverMarried +2026-03,15087,country/DNK,dcid:Count_Person_Years60_NeverMarried +2025-12,49294,country/DNK,dcid:Count_Person_Years60_MarriedOrSeparated +2026-03,49447,country/DNK,dcid:Count_Person_Years60_MarriedOrSeparated +2025-12,2068,country/DNK,dcid:Count_Person_Years60_Widowed +2026-03,2107,country/DNK,dcid:Count_Person_Years60_Widowed +2025-12,17534,country/DNK,dcid:Count_Person_Years60_Divorced +2026-03,17674,country/DNK,dcid:Count_Person_Years60_Divorced +2025-12,81198,country/DNK,dcid:Count_Person_Years61 +2026-03,81688,country/DNK,dcid:Count_Person_Years61 +2025-12,14333,country/DNK,dcid:Count_Person_Years61_NeverMarried +2026-03,14472,country/DNK,dcid:Count_Person_Years61_NeverMarried +2025-12,47924,country/DNK,dcid:Count_Person_Years61_MarriedOrSeparated +2026-03,48010,country/DNK,dcid:Count_Person_Years61_MarriedOrSeparated +2025-12,2344,country/DNK,dcid:Count_Person_Years61_Widowed +2026-03,2338,country/DNK,dcid:Count_Person_Years61_Widowed +2025-12,16597,country/DNK,dcid:Count_Person_Years61_Divorced +2026-03,16868,country/DNK,dcid:Count_Person_Years61_Divorced +2025-12,77837,country/DNK,dcid:Count_Person_Years62 +2026-03,79285,country/DNK,dcid:Count_Person_Years62 +2025-12,13332,country/DNK,dcid:Count_Person_Years62_NeverMarried +2026-03,13669,country/DNK,dcid:Count_Person_Years62_NeverMarried +2025-12,46300,country/DNK,dcid:Count_Person_Years62_MarriedOrSeparated +2026-03,47108,country/DNK,dcid:Count_Person_Years62_MarriedOrSeparated +2025-12,2547,country/DNK,dcid:Count_Person_Years62_Widowed +2026-03,2504,country/DNK,dcid:Count_Person_Years62_Widowed +2025-12,15658,country/DNK,dcid:Count_Person_Years62_Divorced +2026-03,16004,country/DNK,dcid:Count_Person_Years62_Divorced +2025-12,74496,country/DNK,dcid:Count_Person_Years63 +2026-03,74450,country/DNK,dcid:Count_Person_Years63 +2025-12,12230,country/DNK,dcid:Count_Person_Years63_NeverMarried +2026-03,12264,country/DNK,dcid:Count_Person_Years63_NeverMarried +2025-12,44540,country/DNK,dcid:Count_Person_Years63_MarriedOrSeparated +2026-03,44442,country/DNK,dcid:Count_Person_Years63_MarriedOrSeparated +2025-12,2924,country/DNK,dcid:Count_Person_Years63_Widowed +2026-03,2914,country/DNK,dcid:Count_Person_Years63_Widowed +2025-12,14802,country/DNK,dcid:Count_Person_Years63_Divorced +2026-03,14830,country/DNK,dcid:Count_Person_Years63_Divorced +2025-12,71255,country/DNK,dcid:Count_Person_Years64 +2026-03,71648,country/DNK,dcid:Count_Person_Years64 +2025-12,11438,country/DNK,dcid:Count_Person_Years64_NeverMarried +2026-03,11582,country/DNK,dcid:Count_Person_Years64_NeverMarried +2025-12,42829,country/DNK,dcid:Count_Person_Years64_MarriedOrSeparated +2026-03,42968,country/DNK,dcid:Count_Person_Years64_MarriedOrSeparated +2025-12,3109,country/DNK,dcid:Count_Person_Years64_Widowed +2026-03,3074,country/DNK,dcid:Count_Person_Years64_Widowed +2025-12,13879,country/DNK,dcid:Count_Person_Years64_Divorced +2026-03,14024,country/DNK,dcid:Count_Person_Years64_Divorced +2025-12,69919,country/DNK,dcid:Count_Person_Years65 +2026-03,70665,country/DNK,dcid:Count_Person_Years65 +2025-12,10687,country/DNK,dcid:Count_Person_Years65_NeverMarried +2026-03,10907,country/DNK,dcid:Count_Person_Years65_NeverMarried +2025-12,42286,country/DNK,dcid:Count_Person_Years65_MarriedOrSeparated +2026-03,42573,country/DNK,dcid:Count_Person_Years65_MarriedOrSeparated +2025-12,3540,country/DNK,dcid:Count_Person_Years65_Widowed +2026-03,3560,country/DNK,dcid:Count_Person_Years65_Widowed +2025-12,13406,country/DNK,dcid:Count_Person_Years65_Divorced +2026-03,13625,country/DNK,dcid:Count_Person_Years65_Divorced +2025-12,67430,country/DNK,dcid:Count_Person_Years66 +2026-03,67056,country/DNK,dcid:Count_Person_Years66 +2025-12,10010,country/DNK,dcid:Count_Person_Years66_NeverMarried +2026-03,10027,country/DNK,dcid:Count_Person_Years66_NeverMarried +2025-12,41182,country/DNK,dcid:Count_Person_Years66_MarriedOrSeparated +2026-03,40757,country/DNK,dcid:Count_Person_Years66_MarriedOrSeparated +2025-12,3792,country/DNK,dcid:Count_Person_Years66_Widowed +2026-03,3738,country/DNK,dcid:Count_Person_Years66_Widowed +2025-12,12446,country/DNK,dcid:Count_Person_Years66_Divorced +2026-03,12534,country/DNK,dcid:Count_Person_Years66_Divorced +2025-12,66202,country/DNK,dcid:Count_Person_Years67 +2026-03,66619,country/DNK,dcid:Count_Person_Years67 +2025-12,9452,country/DNK,dcid:Count_Person_Years67_NeverMarried +2026-03,9550,country/DNK,dcid:Count_Person_Years67_NeverMarried +2025-12,40512,country/DNK,dcid:Count_Person_Years67_MarriedOrSeparated +2026-03,40644,country/DNK,dcid:Count_Person_Years67_MarriedOrSeparated +2025-12,4258,country/DNK,dcid:Count_Person_Years67_Widowed +2026-03,4309,country/DNK,dcid:Count_Person_Years67_Widowed +2025-12,11980,country/DNK,dcid:Count_Person_Years67_Divorced +2026-03,12116,country/DNK,dcid:Count_Person_Years67_Divorced +2025-12,64923,country/DNK,dcid:Count_Person_Years68 +2026-03,65093,country/DNK,dcid:Count_Person_Years68 +2025-12,8804,country/DNK,dcid:Count_Person_Years68_NeverMarried +2026-03,8931,country/DNK,dcid:Count_Person_Years68_NeverMarried +2025-12,39824,country/DNK,dcid:Count_Person_Years68_MarriedOrSeparated +2026-03,39916,country/DNK,dcid:Count_Person_Years68_MarriedOrSeparated +2025-12,4832,country/DNK,dcid:Count_Person_Years68_Widowed +2026-03,4750,country/DNK,dcid:Count_Person_Years68_Widowed +2025-12,11463,country/DNK,dcid:Count_Person_Years68_Divorced +2026-03,11496,country/DNK,dcid:Count_Person_Years68_Divorced +2025-12,64234,country/DNK,dcid:Count_Person_Years69 +2026-03,64481,country/DNK,dcid:Count_Person_Years69 +2025-12,8330,country/DNK,dcid:Count_Person_Years69_NeverMarried +2026-03,8349,country/DNK,dcid:Count_Person_Years69_NeverMarried +2025-12,39574,country/DNK,dcid:Count_Person_Years69_MarriedOrSeparated +2026-03,39586,country/DNK,dcid:Count_Person_Years69_MarriedOrSeparated +2025-12,5282,country/DNK,dcid:Count_Person_Years69_Widowed +2026-03,5348,country/DNK,dcid:Count_Person_Years69_Widowed +2025-12,11048,country/DNK,dcid:Count_Person_Years69_Divorced +2026-03,11198,country/DNK,dcid:Count_Person_Years69_Divorced +2025-12,62159,country/DNK,dcid:Count_Person_Years70 +2026-03,62417,country/DNK,dcid:Count_Person_Years70 +2025-12,7487,country/DNK,dcid:Count_Person_Years70_NeverMarried +2026-03,7709,country/DNK,dcid:Count_Person_Years70_NeverMarried +2025-12,38299,country/DNK,dcid:Count_Person_Years70_MarriedOrSeparated +2026-03,38357,country/DNK,dcid:Count_Person_Years70_MarriedOrSeparated +2025-12,5769,country/DNK,dcid:Count_Person_Years70_Widowed +2026-03,5728,country/DNK,dcid:Count_Person_Years70_Widowed +2025-12,10604,country/DNK,dcid:Count_Person_Years70_Divorced +2026-03,10623,country/DNK,dcid:Count_Person_Years70_Divorced +2025-12,60131,country/DNK,dcid:Count_Person_Years71 +2026-03,60183,country/DNK,dcid:Count_Person_Years71 +2025-12,6991,country/DNK,dcid:Count_Person_Years71_NeverMarried +2026-03,7005,country/DNK,dcid:Count_Person_Years71_NeverMarried +2025-12,36935,country/DNK,dcid:Count_Person_Years71_MarriedOrSeparated +2026-03,36848,country/DNK,dcid:Count_Person_Years71_MarriedOrSeparated +2025-12,6152,country/DNK,dcid:Count_Person_Years71_Widowed +2026-03,6188,country/DNK,dcid:Count_Person_Years71_Widowed +2025-12,10053,country/DNK,dcid:Count_Person_Years71_Divorced +2026-03,10142,country/DNK,dcid:Count_Person_Years71_Divorced +2025-12,60740,country/DNK,dcid:Count_Person_Years72 +2026-03,60126,country/DNK,dcid:Count_Person_Years72 +2025-12,6421,country/DNK,dcid:Count_Person_Years72_NeverMarried +2026-03,6493,country/DNK,dcid:Count_Person_Years72_NeverMarried +2025-12,37497,country/DNK,dcid:Count_Person_Years72_MarriedOrSeparated +2026-03,36923,country/DNK,dcid:Count_Person_Years72_MarriedOrSeparated +2025-12,6866,country/DNK,dcid:Count_Person_Years72_Widowed +2026-03,6770,country/DNK,dcid:Count_Person_Years72_Widowed +2025-12,9956,country/DNK,dcid:Count_Person_Years72_Divorced +2026-03,9940,country/DNK,dcid:Count_Person_Years72_Divorced +2025-12,56960,country/DNK,dcid:Count_Person_Years73 +2026-03,57772,country/DNK,dcid:Count_Person_Years73 +2025-12,5591,country/DNK,dcid:Count_Person_Years73_NeverMarried +2026-03,5733,country/DNK,dcid:Count_Person_Years73_NeverMarried +2025-12,34982,country/DNK,dcid:Count_Person_Years73_MarriedOrSeparated +2026-03,35446,country/DNK,dcid:Count_Person_Years73_MarriedOrSeparated +2025-12,7289,country/DNK,dcid:Count_Person_Years73_Widowed +2026-03,7334,country/DNK,dcid:Count_Person_Years73_Widowed +2025-12,9098,country/DNK,dcid:Count_Person_Years73_Divorced +2026-03,9259,country/DNK,dcid:Count_Person_Years73_Divorced +2025-12,55571,country/DNK,dcid:Count_Person_Years74 +2026-03,55501,country/DNK,dcid:Count_Person_Years74 +2025-12,4940,country/DNK,dcid:Count_Person_Years74_NeverMarried +2026-03,5051,country/DNK,dcid:Count_Person_Years74_NeverMarried +2025-12,33908,country/DNK,dcid:Count_Person_Years74_MarriedOrSeparated +2026-03,33902,country/DNK,dcid:Count_Person_Years74_MarriedOrSeparated +2025-12,7862,country/DNK,dcid:Count_Person_Years74_Widowed +2026-03,7856,country/DNK,dcid:Count_Person_Years74_Widowed +2025-12,8861,country/DNK,dcid:Count_Person_Years74_Divorced +2026-03,8692,country/DNK,dcid:Count_Person_Years74_Divorced +2025-12,56276,country/DNK,dcid:Count_Person_Years75 +2026-03,56099,country/DNK,dcid:Count_Person_Years75 +2025-12,4574,country/DNK,dcid:Count_Person_Years75_NeverMarried +2026-03,4652,country/DNK,dcid:Count_Person_Years75_NeverMarried +2025-12,34124,country/DNK,dcid:Count_Person_Years75_MarriedOrSeparated +2026-03,33851,country/DNK,dcid:Count_Person_Years75_MarriedOrSeparated +2025-12,8875,country/DNK,dcid:Count_Person_Years75_Widowed +2026-03,8710,country/DNK,dcid:Count_Person_Years75_Widowed +2025-12,8703,country/DNK,dcid:Count_Person_Years75_Divorced +2026-03,8886,country/DNK,dcid:Count_Person_Years75_Divorced +2025-12,54988,country/DNK,dcid:Count_Person_Years76 +2026-03,54382,country/DNK,dcid:Count_Person_Years76 +2025-12,3990,country/DNK,dcid:Count_Person_Years76_NeverMarried +2026-03,4023,country/DNK,dcid:Count_Person_Years76_NeverMarried +2025-12,32965,country/DNK,dcid:Count_Person_Years76_MarriedOrSeparated +2026-03,32623,country/DNK,dcid:Count_Person_Years76_MarriedOrSeparated +2025-12,9650,country/DNK,dcid:Count_Person_Years76_Widowed +2026-03,9403,country/DNK,dcid:Count_Person_Years76_Widowed +2025-12,8383,country/DNK,dcid:Count_Person_Years76_Divorced +2026-03,8333,country/DNK,dcid:Count_Person_Years76_Divorced +2025-12,55979,country/DNK,dcid:Count_Person_Years77 +2026-03,55843,country/DNK,dcid:Count_Person_Years77 +2025-12,3617,country/DNK,dcid:Count_Person_Years77_NeverMarried +2026-03,3716,country/DNK,dcid:Count_Person_Years77_NeverMarried +2025-12,33330,country/DNK,dcid:Count_Person_Years77_MarriedOrSeparated +2026-03,33077,country/DNK,dcid:Count_Person_Years77_MarriedOrSeparated +2025-12,10760,country/DNK,dcid:Count_Person_Years77_Widowed +2026-03,10845,country/DNK,dcid:Count_Person_Years77_Widowed +2025-12,8272,country/DNK,dcid:Count_Person_Years77_Divorced +2026-03,8205,country/DNK,dcid:Count_Person_Years77_Divorced +2025-12,58085,country/DNK,dcid:Count_Person_Years78 +2026-03,57238,country/DNK,dcid:Count_Person_Years78 +2025-12,3343,country/DNK,dcid:Count_Person_Years78_NeverMarried +2026-03,3369,country/DNK,dcid:Count_Person_Years78_NeverMarried +2025-12,33958,country/DNK,dcid:Count_Person_Years78_MarriedOrSeparated +2026-03,33386,country/DNK,dcid:Count_Person_Years78_MarriedOrSeparated +2025-12,12342,country/DNK,dcid:Count_Person_Years78_Widowed +2026-03,12111,country/DNK,dcid:Count_Person_Years78_Widowed +2025-12,8442,country/DNK,dcid:Count_Person_Years78_Divorced +2026-03,8372,country/DNK,dcid:Count_Person_Years78_Divorced +2025-12,56916,country/DNK,dcid:Count_Person_Years79 +2026-03,56763,country/DNK,dcid:Count_Person_Years79 +2025-12,3019,country/DNK,dcid:Count_Person_Years79_NeverMarried +2026-03,3026,country/DNK,dcid:Count_Person_Years79_NeverMarried +2025-12,32586,country/DNK,dcid:Count_Person_Years79_MarriedOrSeparated +2026-03,32559,country/DNK,dcid:Count_Person_Years79_MarriedOrSeparated +2025-12,13338,country/DNK,dcid:Count_Person_Years79_Widowed +2026-03,13161,country/DNK,dcid:Count_Person_Years79_Widowed +2025-12,7973,country/DNK,dcid:Count_Person_Years79_Divorced +2026-03,8017,country/DNK,dcid:Count_Person_Years79_Divorced +2025-12,51765,country/DNK,dcid:Count_Person_Years80 +2026-03,52333,country/DNK,dcid:Count_Person_Years80 +2025-12,2453,country/DNK,dcid:Count_Person_Years80_NeverMarried +2026-03,2522,country/DNK,dcid:Count_Person_Years80_NeverMarried +2025-12,28693,country/DNK,dcid:Count_Person_Years80_MarriedOrSeparated +2026-03,29042,country/DNK,dcid:Count_Person_Years80_MarriedOrSeparated +2025-12,13422,country/DNK,dcid:Count_Person_Years80_Widowed +2026-03,13562,country/DNK,dcid:Count_Person_Years80_Widowed +2025-12,7197,country/DNK,dcid:Count_Person_Years80_Divorced +2026-03,7207,country/DNK,dcid:Count_Person_Years80_Divorced +2025-12,46398,country/DNK,dcid:Count_Person_Years81 +2026-03,47058,country/DNK,dcid:Count_Person_Years81 +2025-12,2113,country/DNK,dcid:Count_Person_Years81_NeverMarried +2026-03,2148,country/DNK,dcid:Count_Person_Years81_NeverMarried +2025-12,24562,country/DNK,dcid:Count_Person_Years81_MarriedOrSeparated +2026-03,25028,country/DNK,dcid:Count_Person_Years81_MarriedOrSeparated +2025-12,13571,country/DNK,dcid:Count_Person_Years81_Widowed +2026-03,13544,country/DNK,dcid:Count_Person_Years81_Widowed +2025-12,6152,country/DNK,dcid:Count_Person_Years81_Divorced +2026-03,6338,country/DNK,dcid:Count_Person_Years81_Divorced +2025-12,40336,country/DNK,dcid:Count_Person_Years82 +2026-03,41172,country/DNK,dcid:Count_Person_Years82 +2025-12,1640,country/DNK,dcid:Count_Person_Years82_NeverMarried +2026-03,1717,country/DNK,dcid:Count_Person_Years82_NeverMarried +2025-12,20508,country/DNK,dcid:Count_Person_Years82_MarriedOrSeparated +2026-03,20761,country/DNK,dcid:Count_Person_Years82_MarriedOrSeparated +2025-12,12846,country/DNK,dcid:Count_Person_Years82_Widowed +2026-03,13229,country/DNK,dcid:Count_Person_Years82_Widowed +2025-12,5342,country/DNK,dcid:Count_Person_Years82_Divorced +2026-03,5465,country/DNK,dcid:Count_Person_Years82_Divorced +2025-12,35755,country/DNK,dcid:Count_Person_Years83 +2026-03,36447,country/DNK,dcid:Count_Person_Years83 +2025-12,1392,country/DNK,dcid:Count_Person_Years83_NeverMarried +2026-03,1425,country/DNK,dcid:Count_Person_Years83_NeverMarried +2025-12,17182,country/DNK,dcid:Count_Person_Years83_MarriedOrSeparated +2026-03,17610,country/DNK,dcid:Count_Person_Years83_MarriedOrSeparated +2025-12,12574,country/DNK,dcid:Count_Person_Years83_Widowed +2026-03,12676,country/DNK,dcid:Count_Person_Years83_Widowed +2025-12,4607,country/DNK,dcid:Count_Person_Years83_Divorced +2026-03,4736,country/DNK,dcid:Count_Person_Years83_Divorced +2025-12,29748,country/DNK,dcid:Count_Person_Years84 +2026-03,30341,country/DNK,dcid:Count_Person_Years84 +2025-12,1126,country/DNK,dcid:Count_Person_Years84_NeverMarried +2026-03,1156,country/DNK,dcid:Count_Person_Years84_NeverMarried +2025-12,13607,country/DNK,dcid:Count_Person_Years84_MarriedOrSeparated +2026-03,13947,country/DNK,dcid:Count_Person_Years84_MarriedOrSeparated +2025-12,11340,country/DNK,dcid:Count_Person_Years84_Widowed +2026-03,11549,country/DNK,dcid:Count_Person_Years84_Widowed +2025-12,3675,country/DNK,dcid:Count_Person_Years84_Divorced +2026-03,3689,country/DNK,dcid:Count_Person_Years84_Divorced +2025-12,27115,country/DNK,dcid:Count_Person_Years85 +2026-03,27108,country/DNK,dcid:Count_Person_Years85 +2025-12,1011,country/DNK,dcid:Count_Person_Years85_NeverMarried +2026-03,995,country/DNK,dcid:Count_Person_Years85_NeverMarried +2025-12,11547,country/DNK,dcid:Count_Person_Years85_MarriedOrSeparated +2026-03,11617,country/DNK,dcid:Count_Person_Years85_MarriedOrSeparated +2025-12,11346,country/DNK,dcid:Count_Person_Years85_Widowed +2026-03,11239,country/DNK,dcid:Count_Person_Years85_Widowed +2025-12,3211,country/DNK,dcid:Count_Person_Years85_Divorced +2026-03,3257,country/DNK,dcid:Count_Person_Years85_Divorced +2025-12,23620,country/DNK,dcid:Count_Person_Years86 +2026-03,23740,country/DNK,dcid:Count_Person_Years86 +2025-12,866,country/DNK,dcid:Count_Person_Years86_NeverMarried +2026-03,862,country/DNK,dcid:Count_Person_Years86_NeverMarried +2025-12,9369,country/DNK,dcid:Count_Person_Years86_MarriedOrSeparated +2026-03,9360,country/DNK,dcid:Count_Person_Years86_MarriedOrSeparated +2025-12,10669,country/DNK,dcid:Count_Person_Years86_Widowed +2026-03,10773,country/DNK,dcid:Count_Person_Years86_Widowed +2025-12,2716,country/DNK,dcid:Count_Person_Years86_Divorced +2026-03,2745,country/DNK,dcid:Count_Person_Years86_Divorced +2025-12,20846,country/DNK,dcid:Count_Person_Years87 +2026-03,20993,country/DNK,dcid:Count_Person_Years87 +2025-12,728,country/DNK,dcid:Count_Person_Years87_NeverMarried +2026-03,739,country/DNK,dcid:Count_Person_Years87_NeverMarried +2025-12,7607,country/DNK,dcid:Count_Person_Years87_MarriedOrSeparated +2026-03,7710,country/DNK,dcid:Count_Person_Years87_MarriedOrSeparated +2025-12,10268,country/DNK,dcid:Count_Person_Years87_Widowed +2026-03,10225,country/DNK,dcid:Count_Person_Years87_Widowed +2025-12,2243,country/DNK,dcid:Count_Person_Years87_Divorced +2026-03,2319,country/DNK,dcid:Count_Person_Years87_Divorced +2025-12,17495,country/DNK,dcid:Count_Person_Years88 +2026-03,17770,country/DNK,dcid:Count_Person_Years88 +2025-12,613,country/DNK,dcid:Count_Person_Years88_NeverMarried +2026-03,635,country/DNK,dcid:Count_Person_Years88_NeverMarried +2025-12,5787,country/DNK,dcid:Count_Person_Years88_MarriedOrSeparated +2026-03,5851,country/DNK,dcid:Count_Person_Years88_MarriedOrSeparated +2025-12,9308,country/DNK,dcid:Count_Person_Years88_Widowed +2026-03,9473,country/DNK,dcid:Count_Person_Years88_Widowed +2025-12,1787,country/DNK,dcid:Count_Person_Years88_Divorced +2026-03,1811,country/DNK,dcid:Count_Person_Years88_Divorced +2025-12,14410,country/DNK,dcid:Count_Person_Years89 +2026-03,14619,country/DNK,dcid:Count_Person_Years89 +2025-12,480,country/DNK,dcid:Count_Person_Years89_NeverMarried +2026-03,473,country/DNK,dcid:Count_Person_Years89_NeverMarried +2025-12,4322,country/DNK,dcid:Count_Person_Years89_MarriedOrSeparated +2026-03,4421,country/DNK,dcid:Count_Person_Years89_MarriedOrSeparated +2025-12,8238,country/DNK,dcid:Count_Person_Years89_Widowed +2026-03,8315,country/DNK,dcid:Count_Person_Years89_Widowed +2025-12,1370,country/DNK,dcid:Count_Person_Years89_Divorced +2026-03,1410,country/DNK,dcid:Count_Person_Years89_Divorced +2025-12,11820,country/DNK,dcid:Count_Person_Years90 +2026-03,11718,country/DNK,dcid:Count_Person_Years90 +2025-12,372,country/DNK,dcid:Count_Person_Years90_NeverMarried +2026-03,380,country/DNK,dcid:Count_Person_Years90_NeverMarried +2025-12,3109,country/DNK,dcid:Count_Person_Years90_MarriedOrSeparated +2026-03,3151,country/DNK,dcid:Count_Person_Years90_MarriedOrSeparated +2025-12,7215,country/DNK,dcid:Count_Person_Years90_Widowed +2026-03,7098,country/DNK,dcid:Count_Person_Years90_Widowed +2025-12,1124,country/DNK,dcid:Count_Person_Years90_Divorced +2026-03,1089,country/DNK,dcid:Count_Person_Years90_Divorced +2025-12,9280,country/DNK,dcid:Count_Person_Years91 +2026-03,9383,country/DNK,dcid:Count_Person_Years91 +2025-12,266,country/DNK,dcid:Count_Person_Years91_NeverMarried +2026-03,280,country/DNK,dcid:Count_Person_Years91_NeverMarried +2025-12,2100,country/DNK,dcid:Count_Person_Years91_MarriedOrSeparated +2026-03,2116,country/DNK,dcid:Count_Person_Years91_MarriedOrSeparated +2025-12,6077,country/DNK,dcid:Count_Person_Years91_Widowed +2026-03,6129,country/DNK,dcid:Count_Person_Years91_Widowed +2025-12,837,country/DNK,dcid:Count_Person_Years91_Divorced +2026-03,858,country/DNK,dcid:Count_Person_Years91_Divorced +2025-12,7315,country/DNK,dcid:Count_Person_Years92 +2026-03,7436,country/DNK,dcid:Count_Person_Years92 +2025-12,258,country/DNK,dcid:Count_Person_Years92_NeverMarried +2026-03,241,country/DNK,dcid:Count_Person_Years92_NeverMarried +2025-12,1476,country/DNK,dcid:Count_Person_Years92_MarriedOrSeparated +2026-03,1540,country/DNK,dcid:Count_Person_Years92_MarriedOrSeparated +2025-12,4996,country/DNK,dcid:Count_Person_Years92_Widowed +2026-03,5039,country/DNK,dcid:Count_Person_Years92_Widowed +2025-12,585,country/DNK,dcid:Count_Person_Years92_Divorced +2026-03,616,country/DNK,dcid:Count_Person_Years92_Divorced +2025-12,5665,country/DNK,dcid:Count_Person_Years93 +2026-03,5721,country/DNK,dcid:Count_Person_Years93 +2025-12,204,country/DNK,dcid:Count_Person_Years93_NeverMarried +2026-03,193,country/DNK,dcid:Count_Person_Years93_NeverMarried +2025-12,1017,country/DNK,dcid:Count_Person_Years93_MarriedOrSeparated +2026-03,1003,country/DNK,dcid:Count_Person_Years93_MarriedOrSeparated +2025-12,4006,country/DNK,dcid:Count_Person_Years93_Widowed +2026-03,4074,country/DNK,dcid:Count_Person_Years93_Widowed +2025-12,438,country/DNK,dcid:Count_Person_Years93_Divorced +2026-03,451,country/DNK,dcid:Count_Person_Years93_Divorced +2025-12,4338,country/DNK,dcid:Count_Person_Years94 +2026-03,4287,country/DNK,dcid:Count_Person_Years94 +2025-12,150,country/DNK,dcid:Count_Person_Years94_NeverMarried +2026-03,175,country/DNK,dcid:Count_Person_Years94_NeverMarried +2025-12,603,country/DNK,dcid:Count_Person_Years94_MarriedOrSeparated +2026-03,624,country/DNK,dcid:Count_Person_Years94_MarriedOrSeparated +2025-12,3252,country/DNK,dcid:Count_Person_Years94_Widowed +2026-03,3159,country/DNK,dcid:Count_Person_Years94_Widowed +2025-12,333,country/DNK,dcid:Count_Person_Years94_Divorced +2026-03,329,country/DNK,dcid:Count_Person_Years94_Divorced +2025-12,3220,country/DNK,dcid:Count_Person_Years95 +2026-03,3265,country/DNK,dcid:Count_Person_Years95 +2025-12,116,country/DNK,dcid:Count_Person_Years95_NeverMarried +2026-03,113,country/DNK,dcid:Count_Person_Years95_NeverMarried +2025-12,378,country/DNK,dcid:Count_Person_Years95_MarriedOrSeparated +2026-03,389,country/DNK,dcid:Count_Person_Years95_MarriedOrSeparated +2025-12,2485,country/DNK,dcid:Count_Person_Years95_Widowed +2026-03,2527,country/DNK,dcid:Count_Person_Years95_Widowed +2025-12,241,country/DNK,dcid:Count_Person_Years95_Divorced +2026-03,236,country/DNK,dcid:Count_Person_Years95_Divorced +2025-12,2380,country/DNK,dcid:Count_Person_Years96 +2026-03,2359,country/DNK,dcid:Count_Person_Years96 +2025-12,88,country/DNK,dcid:Count_Person_Years96_NeverMarried +2026-03,91,country/DNK,dcid:Count_Person_Years96_NeverMarried +2025-12,227,country/DNK,dcid:Count_Person_Years96_MarriedOrSeparated +2026-03,236,country/DNK,dcid:Count_Person_Years96_MarriedOrSeparated +2025-12,1878,country/DNK,dcid:Count_Person_Years96_Widowed +2026-03,1855,country/DNK,dcid:Count_Person_Years96_Widowed +2025-12,187,country/DNK,dcid:Count_Person_Years96_Divorced +2026-03,177,country/DNK,dcid:Count_Person_Years96_Divorced +2025-12,1712,country/DNK,dcid:Count_Person_Years97 +2026-03,1754,country/DNK,dcid:Count_Person_Years97 +2025-12,64,country/DNK,dcid:Count_Person_Years97_NeverMarried +2026-03,65,country/DNK,dcid:Count_Person_Years97_NeverMarried +2025-12,137,country/DNK,dcid:Count_Person_Years97_MarriedOrSeparated +2026-03,138,country/DNK,dcid:Count_Person_Years97_MarriedOrSeparated +2025-12,1411,country/DNK,dcid:Count_Person_Years97_Widowed +2026-03,1433,country/DNK,dcid:Count_Person_Years97_Widowed +2025-12,100,country/DNK,dcid:Count_Person_Years97_Divorced +2026-03,118,country/DNK,dcid:Count_Person_Years97_Divorced +2025-12,1174,country/DNK,dcid:Count_Person_Years98 +2026-03,1136,country/DNK,dcid:Count_Person_Years98 +2025-12,53,country/DNK,dcid:Count_Person_Years98_NeverMarried +2026-03,47,country/DNK,dcid:Count_Person_Years98_NeverMarried +2025-12,68,country/DNK,dcid:Count_Person_Years98_MarriedOrSeparated +2026-03,66,country/DNK,dcid:Count_Person_Years98_MarriedOrSeparated +2025-12,989,country/DNK,dcid:Count_Person_Years98_Widowed +2026-03,960,country/DNK,dcid:Count_Person_Years98_Widowed diff --git a/statvar_imports/denmark_demographics/test_data/population_quarterly_region_time_marital_status_output.tmcf b/statvar_imports/denmark_demographics/test_data/population_quarterly_region_time_marital_status_output.tmcf new file mode 100644 index 0000000000..0395845d0d --- /dev/null +++ b/statvar_imports/denmark_demographics/test_data/population_quarterly_region_time_marital_status_output.tmcf @@ -0,0 +1,6 @@ +Node: E:population_quarterly_region_time_marital_status_output->E0 +observationDate: C:population_quarterly_region_time_marital_status_output->observationDate +value: C:population_quarterly_region_time_marital_status_output->value +observationAbout: C:population_quarterly_region_time_marital_status_output->observationAbout +variableMeasured: C:population_quarterly_region_time_marital_status_output->variableMeasured +typeOf: dcs:StatVarObservation diff --git a/statvar_imports/denmark_demographics/test_data/population_sex_age_time_input.csv b/statvar_imports/denmark_demographics/test_data/population_sex_age_time_input.csv new file mode 100644 index 0000000000..587a8912a5 --- /dev/null +++ b/statvar_imports/denmark_demographics/test_data/population_sex_age_time_input.csv @@ -0,0 +1,58 @@ +Sex,Age,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026 +Total,"Age, total",2447300,2476700,2505800,2532200,2560300,2588900,2621200,2652000,2687200,2721800,2757100,2788000,2820100,2850900,2885800,2921400,2957700,2991300,3027100,3061300,3264500,3305700,3339700,3372500,3405700,3439200,3466700,3487300,3510500,3530600,3556900,3589700,3620300,3650500,3682900,3711100,3737700,3764900,3793900,3826100,3849100,3882100,3925900,3972700,4023300,4075000,4123500,4168400,4210700,4251500,4285400,4315300,4349400,4389200,4424000,4454000,4479000,4500700,4531900,4565500,4593800,4629600,4665900,4703200,4741000,4777000,4817700,4852900,4876800,4906900,4950598,4975653,5007538,5036184,5054410,5065313,5079879,5096959,5111536,5122065,5123989,5119155,5116464,5112130,5111108,5116273,5124794,5129254,5129778,5135409,5146469,5162126,5180614,5196641,5215718,5251027,5275121,5294860,5313577,5330020,5349212,5368354,5383507,5397640,5411405,5427459,5447084,5475791,5511451,5534738,5560628,5580516,5602628,5627235,5659715,5707251,5748769,5781190,5806081,5822763,5840045,5873420,5932654,5961249,5992734,6025603 +Total,0-4 years,305600,309100,312700,314400,316100,312000,317600,320000,324400,329200,334600,334600,336300,335100,332000,327300,324500,320200,321400,317700,342100,348100,349800,350100,351000,340900,333600,328500,323500,316800,310900,305800,303800,299400,301400,300600,302100,304600,309800,313700,319600,325100,338000,354200,376200,402000,426700,438000,439200,429700,415800,397900,384800,378400,376100,373500,373200,370900,368300,367300,366800,367600,370800,378300,387700,397200,409300,413100,405200,394600,380614,369107,364216,361854,361247,362361,353428,341080,332382,321300,306624,294016,284733,273589,266185,263343,266498,270284,277955,287077,296672,306029,317724,326494,335093,343203,346801,346292,344685,340593,337589,335507,332056,330377,328056,325152,324883,325606,326932,326067,325495,319203,312956,303782,298368,294748,298063,300798,304963,307888,309850,311412,310676,306638,302428,300404 +Total,5-9 years,270400,276500,281800,285900,289600,294600,293800,298300,300800,302700,304800,309600,311800,315500,321000,324800,325800,327400,326400,322800,337300,334300,329200,327400,323800,335400,340500,341400,341600,345000,334300,327900,323800,319600,311900,308000,303900,301800,297000,297900,296700,298500,301800,306900,310800,318100,323500,336900,352100,373700,398000,422000,433200,436000,426300,412400,394500,380800,374100,371900,369500,371500,370500,368800,367800,368300,368600,371200,378200,387200,397207,409456,413743,407046,395743,381358,369362,364596,362704,363350,364833,355226,342056,332667,321133,306931,295415,287229,276468,269796,267132,270164,274087,282235,291893,303490,313513,325317,333791,341804,348058,351253,350742,348880,344062,339815,336216,332439,331075,329874,327867,328548,329520,331146,330947,332625,328443,322681,313253,306601,300360,301614,306909,311109,314722,317347 +Total,10-14 years,254900,254300,255200,256800,260400,265100,272500,275800,280300,284200,287900,287700,292400,294800,298200,299700,304900,307400,311100,316600,338500,339200,342100,341600,340400,334100,331400,326200,324200,318800,329600,335700,336700,337300,340600,332000,326100,322200,318200,310800,306800,302600,300700,295900,296800,294500,297500,300200,306100,310800,316400,321000,334400,350000,372400,396400,420200,430800,433200,423500,409800,392500,380800,374900,372700,370300,371700,370800,368900,367900,368642,369102,371644,379554,388669,397485,409706,414233,407315,396781,383413,371072,365514,363119,363397,364856,356041,343771,334881,323684,309826,298752,290752,280521,273930,272987,276633,280579,289167,298751,308866,318443,330248,338321,346028,350912,353054,351872,350079,345377,341725,338707,335120,333742,333332,332901,335062,337091,339254,338629,338574,332805,329873,320521,314443,309043 +Total,15-19 years,237100,240900,241700,243800,242800,243200,243000,244900,247500,251700,255000,261200,264200,268500,272600,279300,280200,286400,289500,293500,312500,318200,320600,323500,327300,332000,332600,334700,334300,332800,328300,326800,321100,320600,316300,325900,331900,334300,335200,339200,330200,324400,320800,316800,309100,301400,296400,294400,290600,291600,292200,295500,298400,304700,308400,314100,318100,331200,346800,369000,392900,416800,428100,430400,421400,409000,392500,380900,374800,372900,372627,373107,372739,371599,370343,369106,369788,372923,380980,390803,400275,411990,416032,408957,398209,385401,374462,369348,366335,366630,368320,359832,347901,339477,328417,316104,305507,297457,287570,281333,278971,282552,286766,295094,304582,314213,322821,334263,342927,350928,356466,359125,358224,356746,352904,350964,349350,345980,344415,343282,341466,343723,347923,350913,351739,352953 +Total,20-24 years,206500,208100,212600,215800,221100,224200,225900,226100,229200,227700,228300,228900,229700,230200,234800,241000,250300,255900,261500,266800,285400,287900,295100,297700,302800,304400,308200,309000,311300,315200,319500,324600,330500,331900,331000,326500,323800,317600,316800,313500,321400,328200,331000,332200,336000,324100,314300,308400,303200,297300,295700,290300,289100,286800,287700,285600,286800,288000,294800,300200,306000,312100,326600,342600,365100,387800,411900,424400,426000,419200,412394,394630,383967,380567,377236,372702,373896,373608,371998,371748,371568,371448,373876,381828,391867,403399,417417,421643,413469,402112,389685,378503,374324,372865,373891,377173,369767,357920,350075,339787,326414,315966,308389,298461,292541,291367,296255,303797,315695,326535,337459,347475,359625,368274,377040,386749,391322,391572,388990,381891,375904,375447,375378,375678,377613,378905 +Total,25-29 years,177600,184900,187800,192300,196600,200900,200400,202700,204200,208100,208300,211200,212700,215600,214700,216900,220200,223600,225800,232200,249500,257000,262200,269100,273500,279700,281300,285400,287000,290300,291900,298000,302800,309500,316900,322600,325700,329900,329600,328000,322000,319800,314000,313900,310100,320000,323000,322900,321800,323800,315900,307900,303300,299700,293800,289300,283500,280600,277500,278800,278200,282100,286700,293400,298100,304500,310800,324300,339000,361700,389155,412196,426265,430266,422402,409001,392990,381479,376713,374797,372788,373292,372349,370260,369801,372681,375024,378750,386330,395977,405846,418859,423701,418181,408250,398393,388442,384397,382635,383401,384918,377237,365296,356967,345714,333422,323822,319723,315123,310970,311548,316190,322222,333707,346358,361983,374117,386777,394889,400810,402836,406075,409553,409715,407325,406458 +Total,30-34 years,157900,157900,162000,164400,167200,171500,178800,181200,185800,189600,191900,192100,195200,197000,202100,205300,209400,211600,213900,214100,228400,231000,233400,235800,240500,245400,252400,257700,263300,266300,271500,274300,280600,283600,290100,293800,298500,302100,307500,314000,318300,321500,325900,326000,324200,321500,318200,312600,309900,306800,312200,316300,317500,317900,320200,311200,303600,298300,293800,288400,284800,281700,280700,277600,278600,278900,282300,286500,292500,297500,306562,312692,326124,342140,363469,385607,409425,422680,426387,419026,407617,391255,379217,373941,371797,370839,373109,373119,371422,371020,372986,374680,379260,388146,399003,411014,424853,429897,424268,414200,402345,390899,386495,384040,384180,385137,377378,367679,362079,353369,342593,333621,328063,321890,319869,323168,330546,337657,348274,358346,368467,378954,395334,403882,413233,419289 +Total,35-39 years,141500,143600,145400,146700,148300,151500,151800,156900,159300,162500,166300,173500,176400,181400,185700,189200,189800,193100,194300,199500,211700,215000,217900,222200,222100,224300,226600,228500,230700,235000,240600,248400,254200,261200,265300,270700,272700,278500,280900,286800,289700,294400,298100,303700,309900,314100,317900,320600,321000,319300,313800,310100,304600,303600,299800,308200,312500,313200,313200,315600,307500,301400,297900,293800,287900,284400,280900,279500,276300,278000,280337,283022,287467,293833,298372,304085,310690,323610,339427,361265,384176,407323,419874,423059,415649,404774,389360,378028,372854,370490,369419,371824,372280,371748,372292,376493,378749,383552,392458,403244,413175,425955,430358,424425,413926,401642,390216,386883,386227,387393,389788,382415,371971,365935,358865,350425,343423,339008,332887,328462,328212,334816,345726,357912,370668,383096 +Total,40-44 years,138700,138400,137200,136300,135000,134000,137400,139800,142200,144500,147800,147800,152500,154900,157900,161700,169000,171900,176600,180800,193000,193200,196300,198000,203300,206500,209800,212400,216400,216700,218300,220800,223800,226900,232300,238000,245200,250700,257200,261100,265900,268000,273800,276500,282100,285600,289200,293300,298000,303700,308400,311300,315100,315500,313500,309200,306000,300200,299100,295300,304300,309500,311100,311600,314100,305800,299600,296000,291700,286000,284058,280277,278788,276109,276999,276838,279849,284247,290515,295381,301794,308187,320509,335901,357294,380392,403954,416735,419651,412205,401460,386206,375205,370929,369254,369749,372435,373140,372863,373592,376257,378117,382517,391155,401736,411295,423990,428922,424392,414573,403306,392184,388543,387330,389604,393520,387871,378255,372565,364159,353820,346545,345513,340314,338216,339576 +Total,45-49 years,119600,122800,124500,126800,128200,130600,130800,130700,130500,130200,129100,132300,134700,137000,139400,142700,143000,147600,149800,152800,164600,172200,175000,180100,184100,187400,187600,190200,192000,196000,199700,203900,206800,211400,211900,213800,215800,218600,221700,226800,232200,239400,244900,251600,255300,259100,262800,267000,271400,275600,278200,282500,286100,291600,298200,302700,305700,309400,309600,307800,303600,300800,296000,295100,291900,299300,304600,306100,306600,309300,302550,296230,292834,288573,282462,278951,275226,273808,271046,272289,272579,275390,279607,285585,290425,296927,303604,315996,331148,352128,374762,397975,410882,414419,407605,398192,383475,372812,368572,366867,366109,368729,369512,369168,369893,372440,374298,379282,388735,399835,409904,422591,427351,422425,413604,403639,393841,391089,390083,391889,395004,389706,382173,377233,369864,360585 +Total,50-54 years,104900,105700,107800,108100,110700,111300,115400,117600,120600,122500,125100,125100,124700,124500,124000,123800,126900,129100,131600,133800,144000,144400,148900,151100,154200,157800,164900,167900,172500,176400,179600,180300,182900,184700,189400,193200,197100,199600,203900,204500,206200,208200,211300,214500,219300,225400,231600,237400,242500,247100,251200,253700,259100,261700,266800,270600,274800,278300,283700,290300,294400,297900,301800,302200,300300,296800,293900,289100,287900,284600,292764,297807,299045,299758,302270,294266,288110,284668,280725,274841,271696,268225,266591,263855,264896,265369,268321,272510,278508,283171,289727,296364,308822,324062,344907,367916,390949,403806,407240,400776,390999,376257,365607,361392,359801,359116,361741,362757,363110,364297,367225,369277,374370,383496,395097,405774,419493,425011,420781,411906,401646,392510,391370,390931,393531,396894 +Total,55-59 years,91400,91500,91600,93200,93600,96300,97400,99900,100500,103900,105000,108500,110600,113700,115400,118200,118100,117700,117400,117000,121700,124800,127200,129700,132000,135600,135900,139800,142000,145200,148800,155300,159200,163500,167600,170300,171000,173200,175000,179600,182900,186800,189400,193600,194300,196200,198800,201900,205600,210100,214800,221500,226600,232800,236800,240900,243300,248500,251000,255900,259900,264000,267300,272700,279000,282600,286100,289800,290300,288700,285471,282749,278747,277191,273418,280950,285674,286683,287246,289570,282028,276178,272907,269090,263481,260371,257027,255360,252807,253874,254378,257525,262023,268565,273499,280690,287403,299852,314674,335048,356621,379138,391626,395011,388976,379669,365498,355236,351519,350004,349543,352243,353381,354046,355781,359474,362210,367613,376994,388538,399520,413339,420559,416858,408582,398793 +Total,60-64 years,78400,78000,78600,79700,81200,81600,82400,82600,84600,85000,88200,89100,91400,92100,95200,95700,99100,100800,103900,105400,112400,112300,111700,111400,111500,111400,114300,116300,119000,120500,124100,124500,128000,130400,133700,137200,142800,146200,150200,154200,156600,157200,159700,161700,166000,170300,173200,176000,179000,181200,182500,185200,187900,191200,195700,201300,207600,212600,218400,222100,225200,228200,233100,235700,240300,244200,247600,250300,255500,261500,266065,269037,272098,272718,271262,268006,265187,261409,259951,256177,263148,267501,268261,268708,270920,264056,258738,255480,252010,246860,244226,241440,240318,237913,239027,240105,243607,248371,255112,260222,267062,273717,285544,299771,319407,340252,362167,374291,378062,372657,363928,350853,341481,337982,336817,336859,339856,341595,342670,344371,348114,351258,358338,368091,380187,391386 +Total,65-69 years,63300,65400,67100,66500,66300,67000,66800,67700,68800,70400,71200,71600,71800,73500,73800,76300,77000,78800,79600,82400,87100,90200,91400,93900,95200,97700,97700,97700,97400,97800,97400,99800,101600,103900,105800,108300,108700,111600,113800,116700,119500,124900,128300,132000,135600,137800,139500,141900,144900,148400,151700,155100,157700,161400,162400,164200,167000,169300,172400,176900,182200,187500,192100,197000,199700,202900,205700,209900,212300,216600,220452,223713,226489,231111,236748,240545,243408,246565,246975,245935,242744,240274,236710,235027,231513,238036,242000,242613,242887,244832,239097,234940,232442,229316,224767,222511,219986,219178,217087,218504,219974,223823,228858,235749,241285,248267,254765,266478,280068,298841,318797,339865,352035,356312,351880,344348,332296,323628,320259,319275,319469,322692,325352,327014,329542,333914 +Total,70-74 years,45700,44800,44600,46100,47800,49400,51300,52200,52100,52000,53300,53300,54000,54900,56300,56200,56500,56500,58400,58700,64200,64900,66300,66800,69200,69500,72200,73200,75300,76300,78300,78300,78200,77800,77800,77900,79900,81100,83000,84400,86200,86700,89900,91900,94400,97900,101200,104800,108800,112000,114100,115600,117800,120000,123900,127300,130400,132500,135800,136700,138100,140900,142800,145700,149300,153700,157400,161500,165900,168300,171296,174399,178033,180812,184529,187760,190441,193361,197584,202261,205631,208100,211061,211879,211181,208582,206503,203618,202223,199423,204859,208246,208694,209061,210865,205944,202272,200039,198066,194795,193071,191428,191041,189903,191775,194127,198552,204027,211089,216868,223846,230590,241994,255367,273446,292443,312288,324093,328265,324554,317771,306526,298794,295938,295545,295999 +Total,75-79 years,32300,32600,31900,31600,31000,30700,30600,30500,31500,32700,34600,35800,36200,36200,36000,36300,36000,36500,37700,38800,41200,41700,41400,42500,42700,44500,44800,45900,46500,47800,49000,50200,50500,52000,52800,53800,53400,53300,53400,53600,53600,55100,56400,58200,59500,61600,63400,64800,66800,68800,71400,74800,77200,79700,82000,84000,85600,87500,89300,92700,95100,97600,99200,101500,102500,103400,105400,107200,110100,113700,117225,120889,124552,127951,130038,132452,134785,138607,141115,144260,146779,149038,151317,154939,158975,161980,164143,166978,168045,167724,165639,164174,161938,160384,158106,162321,165031,165823,166560,168266,165216,162751,161463,160561,158572,157804,156917,157496,157483,159640,162633,167266,173089,180164,186394,193873,200867,211648,223793,239836,256926,274510,284851,288628,285759,280325 +Total,80-84 years,15600,16100,16900,17100,17400,17700,17700,17200,16900,16600,17000,16800,16700,17400,18200,18600,18900,18900,19400,19500,21200,21300,21400,21800,22300,22400,22700,22500,23100,23200,24400,24400,25000,25500,26500,26600,27200,27500,28200,28400,28700,28600,28900,29400,29800,30600,31700,32600,34300,35300,36200,36900,38600,39600,41000,42900,45300,46800,48500,49900,51300,52400,53600,54700,56700,58600,59700,61200,63100,64500,66483,68843,70309,72822,75308,78052,80580,83830,86324,87912,89652,91469,94098,95767,98401,100569,102666,104575,107191,110548,112659,114442,116449,116837,116864,115224,114309,112812,112574,111204,115150,117593,118199,118901,120750,119535,118656,118196,118400,117547,117189,117322,118170,119026,121930,125369,130127,135926,142088,147963,154710,160839,169568,179602,192732,207351 +Total,85 years and over,5900,6100,6400,6700,7000,7300,7600,7900,8000,8300,8700,8900,8800,8600,8500,8400,8100,7900,8800,8900,9700,10000,9800,9800,9800,10200,10200,10000,10400,10500,10700,10700,10800,11300,11600,11900,11900,12100,12500,12900,12600,12700,13000,13700,13900,14800,14600,14700,15500,16300,16900,17700,18000,18600,19000,20200,20900,21800,22400,23200,24100,25300,26400,27300,28300,29300,29800,31400,32700,34800,36696,38397,40478,42280,43895,45788,47334,49572,52149,54369,56644,59171,61752,63959,65984,67767,70512,73217,75594,77858,79776,82171,83812,85488,88055,89518,91389,93616,96180,97633,98417,98989,98790,99464,100121,103294,105855,106844,108456,109963,111316,113041,114513,115865,117479,118389,119594,120768,121658,124363,127396,130649,134764,140272,146605,153285 +Women,"Age, total",1255000,1270600,1285900,1300500,1315900,1331100,1348200,1364200,1382500,1399900,1419200,1435900,1452900,1469200,1487400,1505600,1523100,1539100,1556300,1572700,1674600,1694700,1710600,1727400,1744300,1760500,1773800,1784200,1795400,1804600,1815300,1828300,1841800,1854800,1869300,1882100,1894400,1907200,1920700,1936000,1948400,1962600,1983300,2005800,2029700,2057100,2081200,2102400,2122300,2142500,2160100,2175700,2192400,2211300,2228500,2244400,2257900,2269500,2284600,2300900,2316000,2333700,2352200,2371300,2390600,2409800,2430200,2448000,2460700,2474400,2490784,2505460,2522727,2538020,2550193,2558469,2567052,2577115,2585948,2593012,2595764,2595330,2595244,2594188,2594036,2595710,2598774,2601258,2601613,2604812,2610078,2617672,2626020,2633199,2642394,2658805,2670184,2679191,2688156,2695898,2704893,2714208,2721084,2727505,2734113,2741613,2750422,2763125,2779431,2791452,2804046,2813740,2823776,2834956,2848701,2869364,2888591,2904717,2917008,2925845,2935188,2950505,2983655,2997558,3013749,3029291 +Women,0-4 years,151800,153400,155200,156000,156500,154100,156700,157800,160700,162500,165900,165800,166500,165800,164200,161800,160300,158400,158700,156500,169200,172000,172600,172700,173000,168100,164400,162100,159600,156300,153700,150900,149900,147600,148400,147800,148700,149800,152200,153900,156800,159400,165300,173200,184000,196700,208400,213600,213700,209000,203200,194400,187900,184500,183300,181500,181500,180300,179200,178700,179200,179700,181400,185200,189500,194200,199900,201600,197400,192000,185254,179498,177203,176363,176436,177217,172888,166768,162518,156983,149660,143846,139319,134032,130358,128968,130258,131861,135358,139781,144213,148927,154731,159064,163353,167187,168841,168644,167748,165764,164439,163685,162041,161320,160174,158863,158502,159026,159447,158895,158411,155563,152285,147990,145367,143618,144883,146439,148269,149602,150626,151555,151046,149098,146899,145715 +Women,5-9 years,133900,137100,139400,141500,143700,146300,146100,148500,149600,150200,151100,153400,154300,156500,159200,161300,161700,162300,161600,159900,167500,166000,163600,162500,160800,166600,168900,168900,168700,170500,165300,162100,160100,158000,154100,152200,150000,149300,146900,147100,146200,147100,148600,151000,152700,156500,159100,165500,173000,183600,194600,206100,211400,212600,208000,201700,192900,186100,182600,181400,179900,181000,180500,179800,179300,179900,180100,181600,185200,189500,193911,199775,201829,198335,192798,185856,179864,177689,177004,177640,178619,174039,167450,162746,157028,149953,144608,140553,135447,132153,130852,132076,133751,137483,142138,147656,152571,158361,162554,166536,169496,170988,170782,169899,167652,165765,164148,162254,161707,161123,160251,160319,160925,161411,161156,161701,159967,156990,152740,149474,146481,146639,149395,151243,152969,154227 +Women,10-14 years,126100,126200,127100,127700,129400,131500,135200,136400,138900,141200,144100,144100,146600,147300,148500,148900,151300,152400,154500,157300,168200,168800,170300,170200,170000,166500,165000,162400,161100,157900,163000,165700,166400,166700,168500,164200,161300,159400,157400,153700,151700,149400,148800,146400,146600,144700,146200,147500,150700,152900,155800,157800,164100,171700,182600,193900,205300,210300,211300,206700,200400,191900,186100,183100,182000,180400,181300,180800,180000,179400,179865,180268,181754,185705,190017,194177,199996,202128,198490,193376,186903,180747,178150,177279,177727,178666,174373,168169,163725,158212,151286,146270,142252,137366,134127,133643,135165,136944,140870,145483,150214,154866,160626,164642,168497,170866,171864,171364,170518,168257,166718,165439,163666,163114,162822,162606,163401,164520,165351,164885,164628,162125,160579,156225,153366,150668 +Women,15-19 years,118200,120400,121000,122900,122700,123300,123000,124100,124400,126200,128000,131700,133300,136100,138600,141800,142100,144900,145500,147000,156300,158900,159700,162200,164200,166800,167100,168100,167600,166600,163500,162800,160100,159600,157000,161800,164700,165500,165800,168000,163700,160600,158900,156800,153000,149300,146500,145300,143000,143400,144300,146000,147200,150400,151900,154600,156100,162200,169700,180600,191900,203200,208600,209400,205300,199800,191700,186000,182900,181800,180953,181250,180882,180465,179978,179721,180375,182315,186447,191062,195434,200885,202825,199139,193885,187715,182057,179871,178557,179114,180190,176085,170076,165946,160458,154310,149521,145570,140849,137939,136759,138193,140015,143729,148211,152709,157037,162666,167058,170971,173639,174860,174407,173716,171815,170996,170361,168701,168141,167639,166863,167881,170222,171158,171178,171281 +Women,20-24 years,106200,106500,108600,109700,112600,114300,116400,117200,119400,118900,118500,118900,119900,120200,122400,125200,129600,131600,134500,137400,148000,148500,151800,152100,154100,154300,156400,157200,159100,160900,162200,163700,165900,166100,165800,163300,161900,158800,158200,156100,160600,163300,164200,164800,166900,163000,158200,154700,151200,147800,147500,145000,144400,142900,143100,142100,142900,143300,146200,148200,151200,153800,160400,168200,178900,189700,200900,206800,207400,203800,199866,191645,186811,184911,183935,181512,182243,181847,181260,181304,181687,181826,183207,187060,191478,196336,202580,204712,200692,195498,189679,184286,182640,182482,183603,185552,182225,176283,172541,167570,161045,156508,152797,147750,144598,143727,145720,149249,154707,160117,165462,170654,176575,180679,184806,189151,191188,191633,190343,186937,184035,183918,184411,184804,185841,185707 +Women,25-29 years,92500,96300,97300,99400,101600,103600,103500,105300,106300,108900,110000,111900,112800,114900,114500,115800,117100,118600,119100,121700,130600,134700,136900,140600,142900,145800,146000,148300,148600,150100,150500,152700,154400,157500,160400,163000,164000,165700,165200,164600,161800,160300,157500,157100,154600,160800,163000,163100,162600,163900,159500,155800,153500,151200,148000,145800,142900,141800,139900,140200,139400,141000,143000,146100,147900,150600,153300,159200,166300,176800,188326,199453,206288,207885,204632,199087,191589,186229,183888,183012,181689,182253,181769,180859,180509,181483,182332,184215,187845,192184,197004,203275,205783,203048,198690,194300,189613,188301,188181,189304,190480,187100,181393,177459,172033,165979,161568,159345,156909,155013,155000,156763,159475,164508,170197,177111,183135,189431,193458,196402,197432,198620,200743,200741,199594,199417 +Women,30-34 years,83200,82900,85100,86100,87000,89000,92900,93800,96300,98500,100200,100200,102100,103000,105900,107800,110200,111500,113500,113500,119300,120700,122100,123300,125800,128400,132200,134400,137300,138900,141500,142300,145100,145700,148500,149800,151800,153400,156100,158800,161000,162000,163800,163600,162900,161400,160100,157600,156200,154600,157000,159500,160100,160600,162100,157900,154200,151600,148900,145800,143800,141800,141400,139600,139900,139600,141000,142700,145500,147100,150466,153289,159272,166970,177374,187862,199024,205416,207122,203928,199131,191332,185687,183078,182049,181070,182130,181975,181170,180894,181916,182784,184993,189274,194157,200061,206750,209420,206649,202174,196926,191660,190275,189887,190643,191666,188119,183159,180392,176291,170851,166583,163374,160128,158343,159231,162239,165430,170428,175511,180271,185255,193883,198145,202824,205712 +Women,35-39 years,74700,76000,77000,77700,78600,80100,79800,82400,83200,84100,85700,89700,90800,93400,95700,97600,97800,99900,100700,103600,109800,111800,113300,115900,115800,117000,118200,119300,120300,122300,125000,129100,131400,135000,137200,139800,140500,143300,143800,146500,147600,149700,151300,154200,156800,158200,159800,160900,161100,160400,157900,156300,153800,153100,150900,155400,157900,158400,158700,160100,155900,152700,150800,148400,145300,143500,141400,140700,138900,139400,139483,140757,142690,145618,147362,150018,152912,158704,166278,176826,187529,198586,204696,206197,202889,198215,190878,185556,183093,182047,181016,182347,182308,182103,182313,184351,185480,187803,192149,197150,202161,208431,210892,207960,203290,197656,192267,191088,191245,192614,194329,191027,185843,182734,178824,174101,170741,168153,164829,162485,162234,164736,170315,175657,181978,187747 +Women,40-44 years,72700,72600,72300,72000,71800,71300,73000,74100,75100,76200,77000,76700,79200,80000,81100,83100,87100,88200,90700,92900,99400,99400,101500,102400,105500,107100,109000,110300,112600,112600,113500,114300,116000,117400,119800,122600,126600,129000,132600,134900,137400,138100,140900,141600,144200,145400,146900,148800,151000,153600,155700,156900,158600,158700,157900,156000,154500,151900,151200,149000,153500,156400,157100,157700,159200,155100,151800,149900,147400,144300,142613,140581,139915,138338,138698,138461,139778,141679,144592,146366,149268,152072,157644,165121,175449,186198,197307,203691,205120,201915,197447,190161,184944,182770,181979,181855,183368,183475,183412,183597,185004,186029,188245,192579,197524,202298,208447,210969,208574,204237,199063,193901,192693,192679,194114,196251,193540,188736,185852,181674,176448,172805,172270,169443,168150,168535 +Women,45-49 years,62000,64000,64900,66500,67500,69300,69100,69100,69000,69200,67900,69600,70800,71900,73200,74900,74800,77200,77900,79000,84400,88600,89600,92400,94500,96400,96400,98200,99000,101500,103100,105500,106900,109400,109500,110500,111300,112900,114500,116900,119700,123700,126100,129800,132000,133600,135400,137300,139200,140900,141900,143900,145500,148200,151100,153100,154400,156100,156100,155400,153400,152100,149900,149200,147300,151300,154300,154900,155400,156900,153234,149947,148241,145632,142554,140656,138553,137944,136420,136880,136719,137990,139864,142665,144476,147385,150334,155917,163301,173493,184124,195275,201717,203452,200446,196442,189443,184361,182342,181530,180849,182285,182510,182406,182720,184057,185052,187337,192025,197288,202458,208699,211165,208710,204582,199814,195034,194163,194245,195744,197743,195133,191621,189003,185340,180579 +Women,50-54 years,54700,55200,56400,56700,58100,58500,60800,61800,63500,64600,66200,66000,65900,65700,65800,65700,67400,68600,69900,71100,75400,75200,77500,78100,79200,80900,84800,85800,88300,90300,92000,92300,94000,95000,97500,99500,101800,103100,105500,105700,106700,107500,109300,110900,113200,116500,119600,122500,125200,127800,130000,131000,133800,134600,137000,138600,140500,142100,144800,147700,149500,151000,152800,152900,152200,150600,149200,147100,146300,144200,148278,151151,151631,152445,153890,149927,146715,144979,142571,139556,137775,135751,135012,133513,133852,133851,135176,137003,139848,141613,144581,147584,153152,160568,170783,181638,192656,199150,200856,198086,193814,186827,181747,179738,179027,178458,179903,180281,180388,180950,182521,183556,186036,190574,195997,201332,207912,210648,208488,204373,199709,195199,195401,195716,197607,199622 +Women,55-59 years,47800,48000,48200,49300,49600,51100,51500,52800,53000,54700,55300,57300,58300,60100,61200,63000,62800,62800,62500,62700,64400,66000,67200,68400,69500,71100,70800,72800,73500,74600,76100,79600,81300,83400,85700,87100,87500,89100,90100,92800,94600,96900,98200,100600,100800,101600,103000,104700,106700,109100,111500,115300,117700,121100,123400,125500,126600,129300,130100,132500,134200,136000,137500,140300,143200,145000,146500,148200,148400,147700,145979,144674,142891,141849,139669,143701,146481,146928,147594,149046,145246,142168,140385,138003,135088,133291,131307,130589,129102,129484,129483,130888,132919,135901,137781,141093,144155,149696,156956,166973,177342,188164,194533,196197,193559,189494,182755,177828,176036,175385,174884,176387,176918,177238,177966,179683,181030,183759,188323,193719,199180,205829,209680,207816,203975,199524 +Women,60-64 years,41600,41300,41700,42500,43300,43500,44000,44100,45300,45400,47100,47500,48800,49100,50600,50900,52800,53600,55400,56300,60300,59900,59500,59200,59300,59100,60600,61600,62900,63700,65100,64900,66600,67500,68800,70400,73400,74900,76900,79100,80500,80900,82700,83800,86200,88500,90100,91700,93300,94500,95300,96600,98200,100000,102400,105400,109100,111600,114900,117200,118800,120300,123000,124100,126500,128400,130000,131300,134000,136800,138831,140154,141469,141716,141166,139580,138164,136463,135491,133259,137154,139782,140135,140754,142111,138487,135444,133703,131492,128697,127014,125217,124663,123233,123652,123884,125392,127510,130706,132595,135694,138738,144094,151213,160929,170938,181558,187719,189516,187199,183462,177108,172565,170925,170401,170093,171723,172514,172998,173710,175483,177031,180673,185533,191160,196726 +Women,65-69 years,34000,35200,36000,35800,35900,36500,36100,36500,37100,37900,38200,38600,38700,39700,39900,41200,41500,42500,42800,44100,46600,48400,48900,50300,51100,52600,52400,52200,52000,52300,52100,53200,54100,55200,56200,57300,57100,58400,59300,60500,61700,64700,66200,68200,70000,71100,72100,73600,75500,77600,79400,81400,82900,85000,85600,86800,88400,89900,91700,94100,97300,100600,103000,105900,107900,109600,111200,113700,115000,117200,119082,120789,122261,124871,127620,129470,130686,132039,132276,131894,130297,129025,127304,126269,124080,127945,130322,130506,130870,132065,128879,126233,124690,122510,119813,118216,116557,116009,114696,115164,115517,117121,119336,122548,124845,128175,131233,136618,143487,152812,162422,172775,178973,181063,179072,175775,169882,165605,163988,163541,163349,165130,166460,167229,168331,170490 +Women,70-74 years,24700,24200,24100,25000,26000,26900,28100,28600,28500,28600,29400,29300,29600,30100,30800,30600,30900,30900,31900,32000,34900,35200,35900,36000,37200,37200,38800,39300,40600,41100,42400,42300,42200,42000,42000,42100,43000,43600,44500,45300,46100,46000,47500,48300,49300,51200,52800,54500,56500,58100,59400,60300,61900,63200,65600,67500,69300,70700,72900,73600,74600,76400,77700,79600,81800,84600,87200,89600,92300,94300,96227,98150,100401,102105,104269,106066,107563,109270,111733,114143,115887,117138,118523,118846,118499,116894,115791,114360,113338,111463,114656,116739,116853,117134,118146,115203,112736,111133,109193,106969,105469,104248,103830,102882,103568,104337,106216,108697,112065,114588,117971,121252,126560,133382,142515,151845,161669,167763,169738,168091,165172,159666,155917,154475,154162,154121 +Women,75-79 years,18100,18200,17900,17700,17300,17200,17100,16900,17500,18100,19300,20000,20300,20200,20200,20300,20000,20200,20900,21400,22500,22800,22600,23300,23300,24300,24400,25000,25300,26000,26600,27200,27400,28200,28700,29300,29000,29000,29100,29200,29300,30000,30600,31500,32100,33100,33900,34500,35500,36500,37500,39300,40400,41700,43000,44300,45400,46700,47900,50000,51600,53100,54400,55900,56800,57700,59200,60600,62700,65000,67521,70118,72559,74915,76828,78681,80366,82778,84493,86532,88283,89765,91167,93376,95685,97340,98310,99624,99988,99711,98424,97499,96122,95103,93383,95990,97662,97894,98296,99098,96898,94756,93488,92177,90507,89469,88586,88594,88126,88962,90086,92128,94919,98294,101122,104872,108267,113479,119891,128223,136771,145676,151264,153258,151922,149558 +Women,80-84 years,9100,9300,9700,9800,10000,10200,10300,10000,9800,9600,9900,9700,9500,9900,10400,10600,10800,10800,11000,11100,12000,11900,11900,12100,12400,12300,12500,12500,12900,12900,13500,13500,13800,14000,14500,14600,15000,15100,15500,15600,15900,15800,16100,16300,16600,17000,17600,18100,19000,19400,19900,20100,20900,21300,21900,22800,24200,25000,26000,26700,27800,28600,29500,30400,31700,33100,34000,35100,36500,37500,38905,40703,41947,43909,45641,47635,49710,51966,53857,55528,56978,58512,60433,61762,63576,65139,66548,67826,69648,71656,72933,73646,74686,74660,74613,73402,72726,71812,71552,70330,72657,74200,74320,74659,75487,74230,72946,72153,71461,70329,69575,69169,69254,69385,70698,72159,74391,77280,80382,83207,86698,89882,94299,99931,106988,114622 +Women,85 years and over,3700,3800,4000,4200,4300,4400,4600,4800,4900,5100,5400,5500,5500,5300,5200,5100,4900,4700,5200,5200,5800,5900,5700,5700,5700,6000,5900,5800,6000,6100,6200,6200,6200,6500,6700,6800,6800,6900,7100,7300,7100,7200,7300,7700,7800,8500,8500,8500,8900,9400,9700,10000,10100,10500,10700,11500,11800,12200,12500,13000,13500,14200,14900,15400,16100,16800,17200,18300,19200,20700,21990,23258,24683,25988,27326,28842,30145,31973,33914,35677,37505,39613,41674,43489,45297,46774,49019,51127,53019,54832,56381,58380,59740,61102,62959,64022,65323,66825,68606,69636,70129,70409,70160,70460,70849,72926,74501,74778,75770,76421,76943,77557,78143,78426,78904,79025,79228,79473,79544,80628,82065,83425,85476,88083,91465,95040 +Men,"Age, total",1192300,1206100,1219900,1231700,1244400,1257800,1273000,1287800,1304700,1321900,1337900,1352100,1367200,1381700,1398400,1415800,1434600,1452200,1470800,1488600,1589900,1611000,1629100,1645100,1661400,1678700,1692900,1703100,1715100,1726000,1741600,1761400,1778500,1795700,1813600,1829000,1843300,1857700,1873200,1890100,1900700,1919500,1942600,1966900,1993600,2017900,2042300,2066000,2088400,2109000,2125300,2139600,2157000,2177900,2195500,2209600,2221100,2231200,2247300,2264600,2277800,2295900,2313700,2331900,2350400,2367200,2387500,2404900,2416100,2432500,2459814,2470193,2484811,2498164,2504217,2506844,2512827,2519844,2525588,2529053,2528225,2523825,2521220,2517942,2517072,2520563,2526020,2527996,2528165,2530597,2536391,2544454,2554594,2563442,2573324,2592222,2604937,2615669,2625421,2634122,2644319,2654146,2662423,2670135,2677292,2685846,2696662,2712666,2732020,2743286,2756582,2766776,2778852,2792279,2811014,2837887,2860178,2876473,2889073,2896918,2904857,2922915,2948999,2963691,2978985,2996312 +Men,0-4 years,153800,155700,157500,158400,159600,157900,160900,162200,163700,166700,168700,168800,169800,169300,167800,165500,164200,161800,162700,161200,172900,176100,177200,177400,178000,172800,169200,166400,163900,160500,157200,154900,153900,151800,153000,152800,153400,154800,157600,159800,162800,165700,172700,181000,192200,205300,218300,224400,225500,220700,212600,203500,196900,193900,192800,192000,191700,190600,189100,188600,187600,187900,189400,193100,198200,203000,209400,211500,207800,202600,195360,189609,187013,185491,184811,185144,180540,174312,169864,164317,156964,150170,145414,139557,135827,134375,136240,138423,142597,147296,152459,157102,162993,167430,171740,176016,177960,177648,176937,174829,173150,171822,170015,169057,167882,166289,166381,166580,167485,167172,167084,163640,160671,155792,153001,151130,153180,154359,156694,158286,159224,159857,159630,157540,155529,154689 +Men,5-9 years,136500,139400,142400,144400,145900,148300,147700,149800,151200,152500,153700,156200,157500,159000,161800,163500,164100,165100,164800,162900,169800,168300,165600,164900,163000,168800,171600,172500,172900,174500,169000,165800,163700,161600,157800,155800,153900,152500,150100,150800,150500,151400,153200,155900,158100,161600,164400,171400,179100,190100,203400,215900,221800,223400,218300,210700,201600,194700,191500,190500,189600,190500,190000,189000,188500,188400,188500,189600,193000,197700,203296,209681,211914,208711,202945,195502,189498,186907,185700,185710,186214,181187,174606,169921,164105,156978,150807,146676,141021,137643,136280,138088,140336,144752,149755,155834,160942,166956,171237,175268,178562,180265,179960,178981,176410,174050,172068,170185,169368,168751,167616,168229,168595,169735,169791,170924,168476,165691,160513,157127,153879,154975,157514,159866,161753,163120 +Men,10-14 years,128800,128100,128100,129100,131000,133600,137300,139400,141400,143000,143800,143600,145800,147500,149700,150800,153600,155000,156600,159300,170300,170400,171800,171400,170400,167600,166400,163800,163100,160900,166600,170000,170300,170600,172100,167800,164800,162800,160800,157100,155100,153200,151900,149500,150200,149800,151300,152700,155400,157900,160600,163200,170300,178300,189800,202500,214900,220500,221900,216800,209400,200600,194700,191800,190700,189900,190400,190000,188900,188500,188777,188834,189890,193849,198652,203308,209710,212105,208825,203405,196510,190325,187364,185840,185670,186190,181668,175602,171156,165472,158540,152482,148500,143155,139803,139344,141468,143635,148297,153268,158652,163577,169622,173679,177531,180046,181190,180508,179561,177120,175007,173268,171454,170628,170510,170295,171661,172571,173903,173744,173946,170680,169294,164296,161077,158375 +Men,15-19 years,118900,120500,120700,120900,120100,119900,120000,120800,123100,125500,127000,129500,130900,132400,134000,137500,138100,141500,144000,146500,156200,159300,160900,161300,163100,165200,165500,166600,166700,166200,164800,164000,161000,161000,159300,164100,167200,168800,169400,171200,166500,163800,161900,160000,156100,152100,149900,149100,147600,148200,147900,149500,151200,154300,156500,159500,162000,169000,177100,188400,201000,213600,219500,221000,216100,209200,200800,194900,191900,191100,191674,191857,191857,191134,190365,189385,189413,190608,194533,199741,204841,211105,213207,209818,204324,197686,192405,189477,187778,187516,188130,183747,177825,173531,167959,161794,155986,151887,146721,143394,142212,144359,146751,151365,156371,161504,165784,171597,175869,179957,182827,184265,183817,183030,181089,179968,178989,177279,176274,175643,174603,175842,177701,179755,180561,181672 +Men,20-24 years,100300,101600,104000,106100,108500,109900,109500,108900,109800,108800,109800,110000,109800,110000,112400,115800,120700,124300,127000,129400,137400,139400,143300,145600,148700,150100,151800,151800,152200,154300,157300,160900,164600,165800,165200,163200,161900,158800,158600,157400,160800,164900,166800,167400,169100,161100,156100,153700,152000,149500,148200,145300,144700,143900,144600,143500,143900,144700,148600,152000,154800,158300,166200,174400,186200,198100,211000,217600,218600,215400,212528,202985,197156,195656,193301,191190,191653,191761,190738,190444,189881,189622,190669,194768,200389,207063,214837,216931,212777,206614,200006,194217,191684,190383,190288,191621,187542,181637,177534,172217,165369,159458,155592,150711,147943,147640,150535,154548,160988,166418,171997,176821,183050,187595,192234,197598,200134,199939,198647,194954,191869,191529,190967,190874,191772,193198 +Men,25-29 years,85100,88600,90500,92900,95000,97300,96900,97400,97900,99200,98300,99300,99900,100700,100200,101100,103100,105000,106700,110500,118900,122300,125300,128500,130600,133900,135300,137100,138400,140200,141400,145300,148400,152000,156500,159600,161700,164200,164400,163400,160200,159500,156500,156800,155500,159200,160000,159800,159200,159900,156400,152100,149800,148500,145800,143500,140600,138800,137600,138600,138800,141100,143700,147300,150200,153900,157500,165100,172700,184900,200829,212743,219977,222381,217770,209914,201401,195250,192825,191785,191099,191039,190580,189401,189292,191198,192692,194535,198485,203793,208842,215584,217918,215133,209560,204093,198829,196096,194454,194097,194438,190137,183903,179508,173681,167443,162254,160378,158214,155957,156548,159427,162747,169199,176161,184872,190982,197346,201431,204408,205404,207455,208810,208974,207731,207041 +Men,30-34 years,74700,75000,76900,78300,80200,82500,85900,87400,89500,91100,91700,91900,93100,94000,96200,97500,99200,100100,100400,100600,109100,110300,111300,112500,114700,117000,120200,123300,126000,127400,130000,132000,135500,137900,141600,144000,146700,148700,151400,155200,157300,159500,162100,162400,161300,160100,158100,155000,153700,152200,155200,156800,157400,157300,158100,153300,149400,146700,144900,142600,141000,139900,139300,138000,138700,139300,141300,143800,147000,150400,156096,159403,166852,175170,186095,197745,210401,217264,219265,215098,208486,199923,193530,190863,189748,189769,190979,191144,190252,190126,191070,191896,194267,198872,204846,210953,218103,220477,217619,212026,205419,199239,196220,194153,193537,193471,189259,184520,181687,177078,171742,167038,164689,161762,161526,163937,168307,172227,177846,182835,188196,193699,201451,205737,210409,213577 +Men,35-39 years,66800,67600,68400,69000,69700,71400,72000,74500,76100,78400,80600,83800,85600,88000,90000,91600,92000,93200,93600,95900,101900,103200,104600,106300,106300,107300,108400,109200,110400,112700,115600,119300,122800,126200,128100,130900,132200,135200,137100,140300,142100,144700,146800,149500,153100,155900,158100,159700,159900,158900,155900,153800,150800,150500,148900,152800,154600,154800,154500,155500,151600,148700,147100,145400,142600,140900,139500,138800,137400,138600,140854,142265,144777,148215,151010,154067,157778,164906,173149,184439,196647,208737,215178,216862,212760,206559,198482,192472,189761,188443,188403,189477,189972,189645,189979,192142,193269,195749,200309,206094,211014,217524,219466,216465,210636,203986,197949,195795,194982,194779,195459,191388,186128,183201,180041,176324,172682,170855,168058,165977,165978,170080,175411,182255,188690,195349 +Men,40-44 years,66000,65800,64900,64300,63200,62700,64400,65700,67100,68300,70800,71100,73300,74900,76800,78600,81900,83700,85900,87900,93600,93800,94800,95600,97800,99400,100800,102100,103800,104100,104800,106500,107800,109500,112500,115400,118600,121700,124600,126200,128500,129900,132900,134900,137900,140200,142300,144500,147000,150100,152700,154400,156500,156800,155600,153200,151500,148300,147900,146300,150800,153100,154000,153900,154900,150700,147800,146100,144300,141700,141445,139696,138873,137771,138301,138377,140071,142568,145923,149015,152526,156115,162865,170780,181845,194194,206647,213044,214531,210290,204013,196045,190261,188159,187275,187894,189067,189665,189451,189995,191253,192088,194272,198576,204212,208997,215543,217953,215818,210336,204243,198283,195850,194651,195490,197269,194331,189519,186713,182485,177372,173740,173243,170871,170066,171041 +Men,45-49 years,57600,58800,59600,60300,60700,61300,61700,61600,61500,61000,61200,62700,63900,65100,66200,67800,68200,70400,71900,73800,80200,83600,85400,87700,89600,91000,91200,92000,93000,94500,96600,98400,99900,102000,102400,103300,104500,105700,107200,109900,112500,115700,118800,121800,123300,125500,127400,129700,132200,134700,136300,138600,140600,143400,147100,149600,151300,153300,153500,152400,150200,148700,146100,145900,144600,148000,150300,151200,151200,152400,149316,146283,144593,142941,139908,138295,136673,135864,134626,135409,135860,137400,139743,142920,145949,149542,153270,160079,167847,178635,190638,202700,209165,210967,207159,201750,194032,188451,186230,185337,185260,186444,187002,186762,187173,188383,189246,191945,196710,202547,207446,213892,216186,213715,209022,203825,198807,196926,195838,196145,197261,194573,190552,188230,184524,180006 +Men,50-54 years,50200,50500,51400,51400,52600,52800,54600,55800,57100,57900,58900,59100,58800,58800,58200,58100,59500,60500,61700,62700,68600,69200,71400,73000,75000,76900,80100,82100,84200,86100,87600,88000,88900,89700,91900,93700,95300,96500,98400,98800,99500,100700,102000,103600,106100,108900,112000,114900,117300,119300,121200,122700,125300,127100,129800,132000,134300,136200,138900,142600,144900,146900,149000,149300,148100,146200,144700,142000,141600,140400,144486,146656,147414,147313,148380,144339,141395,139689,138154,135285,133921,132474,131579,130342,131044,131518,133145,135507,138660,141558,145146,148780,155670,163494,174124,186278,198293,204656,206384,202690,197185,189430,183860,181654,180774,180658,181838,182476,182722,183347,184704,185721,188334,192922,199100,204442,211581,214363,212293,207533,201937,197311,195969,195215,195924,197272 +Men,55-59 years,43600,43500,43400,43900,44000,45200,45900,47100,47500,49200,49700,51200,52300,53600,54200,55200,55300,54900,54900,54300,57300,58800,60000,61300,62500,64500,65100,67000,68500,70600,72700,75700,77900,80100,81900,83200,83500,84100,84900,86800,88300,89900,91200,93000,93500,94600,95800,97200,98900,101000,103300,106200,108900,111700,113400,115400,116700,119200,120900,123400,125700,128000,129800,132400,135800,137600,139600,141600,141900,141000,139492,138075,135856,135342,133749,137249,139193,139755,139652,140524,136782,134010,132522,131087,128393,127080,125720,124771,123705,124390,124895,126637,129104,132664,135718,139597,143248,150156,157718,168075,179279,190974,197093,198814,195417,190175,182743,177408,175483,174619,174659,175856,176463,176808,177815,179791,181180,183854,188671,194819,200340,207510,210879,209042,204607,199269 +Men,60-64 years,36800,36700,36900,37200,37900,38100,38400,38500,39300,39600,41100,41600,42600,43000,44600,44800,46300,47200,48500,49100,52100,52400,52200,52200,52200,52300,53700,54700,56100,56800,59000,59600,61400,62900,64900,66800,69400,71300,73300,75100,76100,76300,77000,77900,79800,81800,83100,84300,85700,86700,87200,88600,89700,91200,93300,95900,98500,101000,103500,104900,106400,107900,110100,111600,113800,115800,117600,119000,121500,124700,127234,128883,130629,131002,130096,128426,127023,124946,124460,122918,125994,127719,128126,127954,128809,125569,123294,121777,120518,118163,117212,116223,115655,114680,115375,116221,118215,120861,124406,127627,131368,134979,141450,148558,158478,169314,180609,186572,188546,185458,180466,173745,168916,167057,166416,166766,168133,169081,169672,170661,172631,174227,177665,182558,189027,194660 +Men,65-69 years,29300,30200,31100,30700,30400,30500,30700,31200,31700,32500,33000,33000,33100,33800,33900,35100,35500,36300,36800,38300,40500,41800,42500,43600,44100,45100,45300,45500,45400,45500,45300,46600,47500,48700,49600,51000,51600,53200,54500,56200,57800,60200,62100,63800,65600,66700,67400,68300,69400,70800,72300,73700,74800,76400,76800,77400,78600,79400,80700,82800,84900,86900,89100,91100,91800,93300,94500,96200,97300,99400,101370,102924,104228,106240,109128,111075,112722,114526,114699,114041,112447,111249,109406,108758,107433,110091,111678,112107,112017,112767,110218,108707,107752,106806,104954,104295,103429,103169,102391,103340,104457,106702,109522,113201,116440,120092,123532,129860,136581,146029,156375,167090,173062,175249,172808,168573,162414,158023,156271,155734,156120,157562,158892,159785,161211,163424 +Men,70-74 years,21000,20600,20500,21100,21800,22500,23200,23600,23600,23400,23900,24000,24400,24800,25500,25600,25600,25600,26500,26700,29300,29700,30400,30800,32000,32300,33400,33900,34700,35200,35900,36000,36000,35800,35800,35800,36900,37500,38500,39100,40100,40700,42400,43600,45100,46700,48400,50300,52300,53900,54700,55300,55900,56800,58300,59800,61100,61800,62900,63100,63500,64500,65100,66100,67500,69100,70200,71900,73600,74000,75069,76249,77632,78707,80260,81694,82878,84091,85851,88118,89744,90962,92538,93033,92682,91688,90712,89258,88885,87960,90203,91507,91841,91927,92719,90741,89536,88906,88873,87826,87602,87180,87211,87021,88207,89790,92336,95330,99024,102280,105875,109338,115434,121985,130931,140598,150619,156330,158527,156463,152599,146860,142877,141463,141383,141878 +Men,75-79 years,14200,14400,14000,13900,13700,13500,13500,13600,14000,14600,15300,15800,15900,16000,15800,16000,16000,16300,16800,17400,18700,18900,18800,19200,19400,20200,20400,20900,21200,21800,22400,23000,23100,23800,24100,24500,24400,24300,24300,24400,24300,25100,25800,26700,27400,28500,29500,30300,31300,32300,33900,35500,36800,38000,39000,39700,40200,40800,41400,42700,43500,44500,44800,45600,45700,45700,46200,46600,47400,48700,49704,50771,51993,53036,53210,53771,54419,55829,56622,57728,58496,59273,60150,61563,63290,64640,65833,67354,68057,68013,67215,66675,65816,65281,64723,66331,67369,67929,68264,69168,68318,67995,67975,68384,68065,68335,68331,68902,69357,70678,72547,75138,78170,81870,85272,89001,92600,98169,103902,111613,120155,128834,133587,135370,133837,130767 +Men,80-84 years,6500,6800,7200,7300,7400,7500,7400,7200,7100,7000,7100,7100,7200,7500,7800,8000,8100,8100,8400,8400,9200,9400,9500,9700,9900,10100,10200,10000,10200,10300,10900,10900,11200,11500,12000,12000,12200,12400,12700,12800,12800,12800,12800,13100,13200,13600,14100,14500,15300,15900,16300,16800,17700,18300,19100,20100,21100,21800,22500,23200,23500,23800,24100,24300,25000,25500,25700,26100,26600,27000,27578,28140,28362,28913,29667,30417,30870,31864,32467,32384,32674,32957,33665,34005,34825,35430,36118,36749,37543,38892,39726,40796,41763,42177,42251,41822,41583,41000,41022,40874,42493,43393,43879,44242,45263,45305,45710,46043,46939,47218,47614,48153,48916,49641,51232,53210,55736,58646,61706,64756,68012,70957,75269,79671,85744,92729 +Men,85 years and over,2200,2300,2400,2500,2700,2900,3000,3100,3100,3200,3300,3400,3300,3300,3300,3300,3200,3200,3600,3700,3900,4100,4100,4100,4100,4200,4300,4200,4400,4400,4500,4500,4600,4800,4900,5100,5100,5200,5400,5600,5500,5500,5700,6000,6100,6300,6100,6200,6600,6900,7200,7700,7900,8100,8300,8700,9100,9600,9900,10200,10600,11100,11500,11900,12200,12500,12600,13100,13500,14100,14706,15139,15795,16292,16569,16946,17189,17599,18235,18692,19139,19558,20078,20470,20687,20993,21493,22090,22575,23026,23395,23791,24072,24386,25096,25496,26066,26791,27574,27997,28288,28580,28630,29004,29272,30368,31354,32066,32686,33542,34373,35484,36370,37439,38575,39364,40366,41295,42114,43735,45331,47224,49288,52189,55140,58245 diff --git a/statvar_imports/denmark_demographics/test_data/population_sex_age_time_output.csv b/statvar_imports/denmark_demographics/test_data/population_sex_age_time_output.csv new file mode 100644 index 0000000000..271792aa1d --- /dev/null +++ b/statvar_imports/denmark_demographics/test_data/population_sex_age_time_output.csv @@ -0,0 +1,999 @@ +observationDate,value,observationAbout,variableMeasured +1901,2447300,country/DNK,dcid:Count_Person +1902,2476700,country/DNK,dcid:Count_Person +1903,2505800,country/DNK,dcid:Count_Person +1904,2532200,country/DNK,dcid:Count_Person +1905,2560300,country/DNK,dcid:Count_Person +1906,2588900,country/DNK,dcid:Count_Person +1907,2621200,country/DNK,dcid:Count_Person +1908,2652000,country/DNK,dcid:Count_Person +1909,2687200,country/DNK,dcid:Count_Person +1910,2721800,country/DNK,dcid:Count_Person +1911,2757100,country/DNK,dcid:Count_Person +1912,2788000,country/DNK,dcid:Count_Person +1913,2820100,country/DNK,dcid:Count_Person +1914,2850900,country/DNK,dcid:Count_Person +1915,2885800,country/DNK,dcid:Count_Person +1916,2921400,country/DNK,dcid:Count_Person +1917,2957700,country/DNK,dcid:Count_Person +1918,2991300,country/DNK,dcid:Count_Person +1919,3027100,country/DNK,dcid:Count_Person +1920,3061300,country/DNK,dcid:Count_Person +1921,3264500,country/DNK,dcid:Count_Person +1922,3305700,country/DNK,dcid:Count_Person +1923,3339700,country/DNK,dcid:Count_Person +1924,3372500,country/DNK,dcid:Count_Person +1925,3405700,country/DNK,dcid:Count_Person +1926,3439200,country/DNK,dcid:Count_Person +1927,3466700,country/DNK,dcid:Count_Person +1928,3487300,country/DNK,dcid:Count_Person +1929,3510500,country/DNK,dcid:Count_Person +1930,3530600,country/DNK,dcid:Count_Person +1931,3556900,country/DNK,dcid:Count_Person +1932,3589700,country/DNK,dcid:Count_Person +1933,3620300,country/DNK,dcid:Count_Person +1934,3650500,country/DNK,dcid:Count_Person +1935,3682900,country/DNK,dcid:Count_Person +1936,3711100,country/DNK,dcid:Count_Person +1937,3737700,country/DNK,dcid:Count_Person +1938,3764900,country/DNK,dcid:Count_Person +1939,3793900,country/DNK,dcid:Count_Person +1940,3826100,country/DNK,dcid:Count_Person +1941,3849100,country/DNK,dcid:Count_Person +1942,3882100,country/DNK,dcid:Count_Person +1943,3925900,country/DNK,dcid:Count_Person +1944,3972700,country/DNK,dcid:Count_Person +1945,4023300,country/DNK,dcid:Count_Person +1946,4075000,country/DNK,dcid:Count_Person +1947,4123500,country/DNK,dcid:Count_Person +1948,4168400,country/DNK,dcid:Count_Person +1949,4210700,country/DNK,dcid:Count_Person +1950,4251500,country/DNK,dcid:Count_Person +1951,4285400,country/DNK,dcid:Count_Person +1952,4315300,country/DNK,dcid:Count_Person +1953,4349400,country/DNK,dcid:Count_Person +1954,4389200,country/DNK,dcid:Count_Person +1955,4424000,country/DNK,dcid:Count_Person +1956,4454000,country/DNK,dcid:Count_Person +1957,4479000,country/DNK,dcid:Count_Person +1958,4500700,country/DNK,dcid:Count_Person +1959,4531900,country/DNK,dcid:Count_Person +1960,4565500,country/DNK,dcid:Count_Person +1961,4593800,country/DNK,dcid:Count_Person +1962,4629600,country/DNK,dcid:Count_Person +1963,4665900,country/DNK,dcid:Count_Person +1964,4703200,country/DNK,dcid:Count_Person +1965,4741000,country/DNK,dcid:Count_Person +1966,4777000,country/DNK,dcid:Count_Person +1967,4817700,country/DNK,dcid:Count_Person +1968,4852900,country/DNK,dcid:Count_Person +1969,4876800,country/DNK,dcid:Count_Person +1970,4906900,country/DNK,dcid:Count_Person +1971,4950598,country/DNK,dcid:Count_Person +1972,4975653,country/DNK,dcid:Count_Person +1973,5007538,country/DNK,dcid:Count_Person +1974,5036184,country/DNK,dcid:Count_Person +1975,5054410,country/DNK,dcid:Count_Person +1976,5065313,country/DNK,dcid:Count_Person +1977,5079879,country/DNK,dcid:Count_Person +1978,5096959,country/DNK,dcid:Count_Person +1979,5111536,country/DNK,dcid:Count_Person +1980,5122065,country/DNK,dcid:Count_Person +1981,5123989,country/DNK,dcid:Count_Person +1982,5119155,country/DNK,dcid:Count_Person +1983,5116464,country/DNK,dcid:Count_Person +1984,5112130,country/DNK,dcid:Count_Person +1985,5111108,country/DNK,dcid:Count_Person +1986,5116273,country/DNK,dcid:Count_Person +1987,5124794,country/DNK,dcid:Count_Person +1988,5129254,country/DNK,dcid:Count_Person +1989,5129778,country/DNK,dcid:Count_Person +1990,5135409,country/DNK,dcid:Count_Person +1991,5146469,country/DNK,dcid:Count_Person +1992,5162126,country/DNK,dcid:Count_Person +1993,5180614,country/DNK,dcid:Count_Person +1994,5196641,country/DNK,dcid:Count_Person +1995,5215718,country/DNK,dcid:Count_Person +1996,5251027,country/DNK,dcid:Count_Person +1997,5275121,country/DNK,dcid:Count_Person +1998,5294860,country/DNK,dcid:Count_Person +1999,5313577,country/DNK,dcid:Count_Person +2000,5330020,country/DNK,dcid:Count_Person +2001,5349212,country/DNK,dcid:Count_Person +2002,5368354,country/DNK,dcid:Count_Person +2003,5383507,country/DNK,dcid:Count_Person +2004,5397640,country/DNK,dcid:Count_Person +2005,5411405,country/DNK,dcid:Count_Person +2006,5427459,country/DNK,dcid:Count_Person +2007,5447084,country/DNK,dcid:Count_Person +2008,5475791,country/DNK,dcid:Count_Person +2009,5511451,country/DNK,dcid:Count_Person +2010,5534738,country/DNK,dcid:Count_Person +2011,5560628,country/DNK,dcid:Count_Person +2012,5580516,country/DNK,dcid:Count_Person +2013,5602628,country/DNK,dcid:Count_Person +2014,5627235,country/DNK,dcid:Count_Person +2015,5659715,country/DNK,dcid:Count_Person +2016,5707251,country/DNK,dcid:Count_Person +2017,5748769,country/DNK,dcid:Count_Person +2018,5781190,country/DNK,dcid:Count_Person +2019,5806081,country/DNK,dcid:Count_Person +2020,5822763,country/DNK,dcid:Count_Person +2021,5840045,country/DNK,dcid:Count_Person +2022,5873420,country/DNK,dcid:Count_Person +2023,5932654,country/DNK,dcid:Count_Person +2024,5961249,country/DNK,dcid:Count_Person +2025,5992734,country/DNK,dcid:Count_Person +2026,6025603,country/DNK,dcid:Count_Person +1901,305600,country/DNK,dcid:Count_Person_0To4Years +1902,309100,country/DNK,dcid:Count_Person_0To4Years +1903,312700,country/DNK,dcid:Count_Person_0To4Years +1904,314400,country/DNK,dcid:Count_Person_0To4Years +1905,316100,country/DNK,dcid:Count_Person_0To4Years +1906,312000,country/DNK,dcid:Count_Person_0To4Years +1907,317600,country/DNK,dcid:Count_Person_0To4Years +1908,320000,country/DNK,dcid:Count_Person_0To4Years +1909,324400,country/DNK,dcid:Count_Person_0To4Years +1910,329200,country/DNK,dcid:Count_Person_0To4Years +1911,334600,country/DNK,dcid:Count_Person_0To4Years +1912,334600,country/DNK,dcid:Count_Person_0To4Years +1913,336300,country/DNK,dcid:Count_Person_0To4Years +1914,335100,country/DNK,dcid:Count_Person_0To4Years +1915,332000,country/DNK,dcid:Count_Person_0To4Years +1916,327300,country/DNK,dcid:Count_Person_0To4Years +1917,324500,country/DNK,dcid:Count_Person_0To4Years +1918,320200,country/DNK,dcid:Count_Person_0To4Years +1919,321400,country/DNK,dcid:Count_Person_0To4Years +1920,317700,country/DNK,dcid:Count_Person_0To4Years +1921,342100,country/DNK,dcid:Count_Person_0To4Years +1922,348100,country/DNK,dcid:Count_Person_0To4Years +1923,349800,country/DNK,dcid:Count_Person_0To4Years +1924,350100,country/DNK,dcid:Count_Person_0To4Years +1925,351000,country/DNK,dcid:Count_Person_0To4Years +1926,340900,country/DNK,dcid:Count_Person_0To4Years +1927,333600,country/DNK,dcid:Count_Person_0To4Years +1928,328500,country/DNK,dcid:Count_Person_0To4Years +1929,323500,country/DNK,dcid:Count_Person_0To4Years +1930,316800,country/DNK,dcid:Count_Person_0To4Years +1931,310900,country/DNK,dcid:Count_Person_0To4Years +1932,305800,country/DNK,dcid:Count_Person_0To4Years +1933,303800,country/DNK,dcid:Count_Person_0To4Years +1934,299400,country/DNK,dcid:Count_Person_0To4Years +1935,301400,country/DNK,dcid:Count_Person_0To4Years +1936,300600,country/DNK,dcid:Count_Person_0To4Years +1937,302100,country/DNK,dcid:Count_Person_0To4Years +1938,304600,country/DNK,dcid:Count_Person_0To4Years +1939,309800,country/DNK,dcid:Count_Person_0To4Years +1940,313700,country/DNK,dcid:Count_Person_0To4Years +1941,319600,country/DNK,dcid:Count_Person_0To4Years +1942,325100,country/DNK,dcid:Count_Person_0To4Years +1943,338000,country/DNK,dcid:Count_Person_0To4Years +1944,354200,country/DNK,dcid:Count_Person_0To4Years +1945,376200,country/DNK,dcid:Count_Person_0To4Years +1946,402000,country/DNK,dcid:Count_Person_0To4Years +1947,426700,country/DNK,dcid:Count_Person_0To4Years +1948,438000,country/DNK,dcid:Count_Person_0To4Years +1949,439200,country/DNK,dcid:Count_Person_0To4Years +1950,429700,country/DNK,dcid:Count_Person_0To4Years +1951,415800,country/DNK,dcid:Count_Person_0To4Years +1952,397900,country/DNK,dcid:Count_Person_0To4Years +1953,384800,country/DNK,dcid:Count_Person_0To4Years +1954,378400,country/DNK,dcid:Count_Person_0To4Years +1955,376100,country/DNK,dcid:Count_Person_0To4Years +1956,373500,country/DNK,dcid:Count_Person_0To4Years +1957,373200,country/DNK,dcid:Count_Person_0To4Years +1958,370900,country/DNK,dcid:Count_Person_0To4Years +1959,368300,country/DNK,dcid:Count_Person_0To4Years +1960,367300,country/DNK,dcid:Count_Person_0To4Years +1961,366800,country/DNK,dcid:Count_Person_0To4Years +1962,367600,country/DNK,dcid:Count_Person_0To4Years +1963,370800,country/DNK,dcid:Count_Person_0To4Years +1964,378300,country/DNK,dcid:Count_Person_0To4Years +1965,387700,country/DNK,dcid:Count_Person_0To4Years +1966,397200,country/DNK,dcid:Count_Person_0To4Years +1967,409300,country/DNK,dcid:Count_Person_0To4Years +1968,413100,country/DNK,dcid:Count_Person_0To4Years +1969,405200,country/DNK,dcid:Count_Person_0To4Years +1970,394600,country/DNK,dcid:Count_Person_0To4Years +1971,380614,country/DNK,dcid:Count_Person_0To4Years +1972,369107,country/DNK,dcid:Count_Person_0To4Years +1973,364216,country/DNK,dcid:Count_Person_0To4Years +1974,361854,country/DNK,dcid:Count_Person_0To4Years +1975,361247,country/DNK,dcid:Count_Person_0To4Years +1976,362361,country/DNK,dcid:Count_Person_0To4Years +1977,353428,country/DNK,dcid:Count_Person_0To4Years +1978,341080,country/DNK,dcid:Count_Person_0To4Years +1979,332382,country/DNK,dcid:Count_Person_0To4Years +1980,321300,country/DNK,dcid:Count_Person_0To4Years +1981,306624,country/DNK,dcid:Count_Person_0To4Years +1982,294016,country/DNK,dcid:Count_Person_0To4Years +1983,284733,country/DNK,dcid:Count_Person_0To4Years +1984,273589,country/DNK,dcid:Count_Person_0To4Years +1985,266185,country/DNK,dcid:Count_Person_0To4Years +1986,263343,country/DNK,dcid:Count_Person_0To4Years +1987,266498,country/DNK,dcid:Count_Person_0To4Years +1988,270284,country/DNK,dcid:Count_Person_0To4Years +1989,277955,country/DNK,dcid:Count_Person_0To4Years +1990,287077,country/DNK,dcid:Count_Person_0To4Years +1991,296672,country/DNK,dcid:Count_Person_0To4Years +1992,306029,country/DNK,dcid:Count_Person_0To4Years +1993,317724,country/DNK,dcid:Count_Person_0To4Years +1994,326494,country/DNK,dcid:Count_Person_0To4Years +1995,335093,country/DNK,dcid:Count_Person_0To4Years +1996,343203,country/DNK,dcid:Count_Person_0To4Years +1997,346801,country/DNK,dcid:Count_Person_0To4Years +1998,346292,country/DNK,dcid:Count_Person_0To4Years +1999,344685,country/DNK,dcid:Count_Person_0To4Years +2000,340593,country/DNK,dcid:Count_Person_0To4Years +2001,337589,country/DNK,dcid:Count_Person_0To4Years +2002,335507,country/DNK,dcid:Count_Person_0To4Years +2003,332056,country/DNK,dcid:Count_Person_0To4Years +2004,330377,country/DNK,dcid:Count_Person_0To4Years +2005,328056,country/DNK,dcid:Count_Person_0To4Years +2006,325152,country/DNK,dcid:Count_Person_0To4Years +2007,324883,country/DNK,dcid:Count_Person_0To4Years +2008,325606,country/DNK,dcid:Count_Person_0To4Years +2009,326932,country/DNK,dcid:Count_Person_0To4Years +2010,326067,country/DNK,dcid:Count_Person_0To4Years +2011,325495,country/DNK,dcid:Count_Person_0To4Years +2012,319203,country/DNK,dcid:Count_Person_0To4Years +2013,312956,country/DNK,dcid:Count_Person_0To4Years +2014,303782,country/DNK,dcid:Count_Person_0To4Years +2015,298368,country/DNK,dcid:Count_Person_0To4Years +2016,294748,country/DNK,dcid:Count_Person_0To4Years +2017,298063,country/DNK,dcid:Count_Person_0To4Years +2018,300798,country/DNK,dcid:Count_Person_0To4Years +2019,304963,country/DNK,dcid:Count_Person_0To4Years +2020,307888,country/DNK,dcid:Count_Person_0To4Years +2021,309850,country/DNK,dcid:Count_Person_0To4Years +2022,311412,country/DNK,dcid:Count_Person_0To4Years +2023,310676,country/DNK,dcid:Count_Person_0To4Years +2024,306638,country/DNK,dcid:Count_Person_0To4Years +2025,302428,country/DNK,dcid:Count_Person_0To4Years +2026,300404,country/DNK,dcid:Count_Person_0To4Years +1901,270400,country/DNK,dcid:Count_Person_5To9Years +1902,276500,country/DNK,dcid:Count_Person_5To9Years +1903,281800,country/DNK,dcid:Count_Person_5To9Years +1904,285900,country/DNK,dcid:Count_Person_5To9Years +1905,289600,country/DNK,dcid:Count_Person_5To9Years +1906,294600,country/DNK,dcid:Count_Person_5To9Years +1907,293800,country/DNK,dcid:Count_Person_5To9Years +1908,298300,country/DNK,dcid:Count_Person_5To9Years +1909,300800,country/DNK,dcid:Count_Person_5To9Years +1910,302700,country/DNK,dcid:Count_Person_5To9Years +1911,304800,country/DNK,dcid:Count_Person_5To9Years +1912,309600,country/DNK,dcid:Count_Person_5To9Years +1913,311800,country/DNK,dcid:Count_Person_5To9Years +1914,315500,country/DNK,dcid:Count_Person_5To9Years +1915,321000,country/DNK,dcid:Count_Person_5To9Years +1916,324800,country/DNK,dcid:Count_Person_5To9Years +1917,325800,country/DNK,dcid:Count_Person_5To9Years +1918,327400,country/DNK,dcid:Count_Person_5To9Years +1919,326400,country/DNK,dcid:Count_Person_5To9Years +1920,322800,country/DNK,dcid:Count_Person_5To9Years +1921,337300,country/DNK,dcid:Count_Person_5To9Years +1922,334300,country/DNK,dcid:Count_Person_5To9Years +1923,329200,country/DNK,dcid:Count_Person_5To9Years +1924,327400,country/DNK,dcid:Count_Person_5To9Years +1925,323800,country/DNK,dcid:Count_Person_5To9Years +1926,335400,country/DNK,dcid:Count_Person_5To9Years +1927,340500,country/DNK,dcid:Count_Person_5To9Years +1928,341400,country/DNK,dcid:Count_Person_5To9Years +1929,341600,country/DNK,dcid:Count_Person_5To9Years +1930,345000,country/DNK,dcid:Count_Person_5To9Years +1931,334300,country/DNK,dcid:Count_Person_5To9Years +1932,327900,country/DNK,dcid:Count_Person_5To9Years +1933,323800,country/DNK,dcid:Count_Person_5To9Years +1934,319600,country/DNK,dcid:Count_Person_5To9Years +1935,311900,country/DNK,dcid:Count_Person_5To9Years +1936,308000,country/DNK,dcid:Count_Person_5To9Years +1937,303900,country/DNK,dcid:Count_Person_5To9Years +1938,301800,country/DNK,dcid:Count_Person_5To9Years +1939,297000,country/DNK,dcid:Count_Person_5To9Years +1940,297900,country/DNK,dcid:Count_Person_5To9Years +1941,296700,country/DNK,dcid:Count_Person_5To9Years +1942,298500,country/DNK,dcid:Count_Person_5To9Years +1943,301800,country/DNK,dcid:Count_Person_5To9Years +1944,306900,country/DNK,dcid:Count_Person_5To9Years +1945,310800,country/DNK,dcid:Count_Person_5To9Years +1946,318100,country/DNK,dcid:Count_Person_5To9Years +1947,323500,country/DNK,dcid:Count_Person_5To9Years +1948,336900,country/DNK,dcid:Count_Person_5To9Years +1949,352100,country/DNK,dcid:Count_Person_5To9Years +1950,373700,country/DNK,dcid:Count_Person_5To9Years +1951,398000,country/DNK,dcid:Count_Person_5To9Years +1952,422000,country/DNK,dcid:Count_Person_5To9Years +1953,433200,country/DNK,dcid:Count_Person_5To9Years +1954,436000,country/DNK,dcid:Count_Person_5To9Years +1955,426300,country/DNK,dcid:Count_Person_5To9Years +1956,412400,country/DNK,dcid:Count_Person_5To9Years +1957,394500,country/DNK,dcid:Count_Person_5To9Years +1958,380800,country/DNK,dcid:Count_Person_5To9Years +1959,374100,country/DNK,dcid:Count_Person_5To9Years +1960,371900,country/DNK,dcid:Count_Person_5To9Years +1961,369500,country/DNK,dcid:Count_Person_5To9Years +1962,371500,country/DNK,dcid:Count_Person_5To9Years +1963,370500,country/DNK,dcid:Count_Person_5To9Years +1964,368800,country/DNK,dcid:Count_Person_5To9Years +1965,367800,country/DNK,dcid:Count_Person_5To9Years +1966,368300,country/DNK,dcid:Count_Person_5To9Years +1967,368600,country/DNK,dcid:Count_Person_5To9Years +1968,371200,country/DNK,dcid:Count_Person_5To9Years +1969,378200,country/DNK,dcid:Count_Person_5To9Years +1970,387200,country/DNK,dcid:Count_Person_5To9Years +1971,397207,country/DNK,dcid:Count_Person_5To9Years +1972,409456,country/DNK,dcid:Count_Person_5To9Years +1973,413743,country/DNK,dcid:Count_Person_5To9Years +1974,407046,country/DNK,dcid:Count_Person_5To9Years +1975,395743,country/DNK,dcid:Count_Person_5To9Years +1976,381358,country/DNK,dcid:Count_Person_5To9Years +1977,369362,country/DNK,dcid:Count_Person_5To9Years +1978,364596,country/DNK,dcid:Count_Person_5To9Years +1979,362704,country/DNK,dcid:Count_Person_5To9Years +1980,363350,country/DNK,dcid:Count_Person_5To9Years +1981,364833,country/DNK,dcid:Count_Person_5To9Years +1982,355226,country/DNK,dcid:Count_Person_5To9Years +1983,342056,country/DNK,dcid:Count_Person_5To9Years +1984,332667,country/DNK,dcid:Count_Person_5To9Years +1985,321133,country/DNK,dcid:Count_Person_5To9Years +1986,306931,country/DNK,dcid:Count_Person_5To9Years +1987,295415,country/DNK,dcid:Count_Person_5To9Years +1988,287229,country/DNK,dcid:Count_Person_5To9Years +1989,276468,country/DNK,dcid:Count_Person_5To9Years +1990,269796,country/DNK,dcid:Count_Person_5To9Years +1991,267132,country/DNK,dcid:Count_Person_5To9Years +1992,270164,country/DNK,dcid:Count_Person_5To9Years +1993,274087,country/DNK,dcid:Count_Person_5To9Years +1994,282235,country/DNK,dcid:Count_Person_5To9Years +1995,291893,country/DNK,dcid:Count_Person_5To9Years +1996,303490,country/DNK,dcid:Count_Person_5To9Years +1997,313513,country/DNK,dcid:Count_Person_5To9Years +1998,325317,country/DNK,dcid:Count_Person_5To9Years +1999,333791,country/DNK,dcid:Count_Person_5To9Years +2000,341804,country/DNK,dcid:Count_Person_5To9Years +2001,348058,country/DNK,dcid:Count_Person_5To9Years +2002,351253,country/DNK,dcid:Count_Person_5To9Years +2003,350742,country/DNK,dcid:Count_Person_5To9Years +2004,348880,country/DNK,dcid:Count_Person_5To9Years +2005,344062,country/DNK,dcid:Count_Person_5To9Years +2006,339815,country/DNK,dcid:Count_Person_5To9Years +2007,336216,country/DNK,dcid:Count_Person_5To9Years +2008,332439,country/DNK,dcid:Count_Person_5To9Years +2009,331075,country/DNK,dcid:Count_Person_5To9Years +2010,329874,country/DNK,dcid:Count_Person_5To9Years +2011,327867,country/DNK,dcid:Count_Person_5To9Years +2012,328548,country/DNK,dcid:Count_Person_5To9Years +2013,329520,country/DNK,dcid:Count_Person_5To9Years +2014,331146,country/DNK,dcid:Count_Person_5To9Years +2015,330947,country/DNK,dcid:Count_Person_5To9Years +2016,332625,country/DNK,dcid:Count_Person_5To9Years +2017,328443,country/DNK,dcid:Count_Person_5To9Years +2018,322681,country/DNK,dcid:Count_Person_5To9Years +2019,313253,country/DNK,dcid:Count_Person_5To9Years +2020,306601,country/DNK,dcid:Count_Person_5To9Years +2021,300360,country/DNK,dcid:Count_Person_5To9Years +2022,301614,country/DNK,dcid:Count_Person_5To9Years +2023,306909,country/DNK,dcid:Count_Person_5To9Years +2024,311109,country/DNK,dcid:Count_Person_5To9Years +2025,314722,country/DNK,dcid:Count_Person_5To9Years +2026,317347,country/DNK,dcid:Count_Person_5To9Years +1901,254900,country/DNK,dcid:Count_Person_10To14Years +1902,254300,country/DNK,dcid:Count_Person_10To14Years +1903,255200,country/DNK,dcid:Count_Person_10To14Years +1904,256800,country/DNK,dcid:Count_Person_10To14Years +1905,260400,country/DNK,dcid:Count_Person_10To14Years +1906,265100,country/DNK,dcid:Count_Person_10To14Years +1907,272500,country/DNK,dcid:Count_Person_10To14Years +1908,275800,country/DNK,dcid:Count_Person_10To14Years +1909,280300,country/DNK,dcid:Count_Person_10To14Years +1910,284200,country/DNK,dcid:Count_Person_10To14Years +1911,287900,country/DNK,dcid:Count_Person_10To14Years +1912,287700,country/DNK,dcid:Count_Person_10To14Years +1913,292400,country/DNK,dcid:Count_Person_10To14Years +1914,294800,country/DNK,dcid:Count_Person_10To14Years +1915,298200,country/DNK,dcid:Count_Person_10To14Years +1916,299700,country/DNK,dcid:Count_Person_10To14Years +1917,304900,country/DNK,dcid:Count_Person_10To14Years +1918,307400,country/DNK,dcid:Count_Person_10To14Years +1919,311100,country/DNK,dcid:Count_Person_10To14Years +1920,316600,country/DNK,dcid:Count_Person_10To14Years +1921,338500,country/DNK,dcid:Count_Person_10To14Years +1922,339200,country/DNK,dcid:Count_Person_10To14Years +1923,342100,country/DNK,dcid:Count_Person_10To14Years +1924,341600,country/DNK,dcid:Count_Person_10To14Years +1925,340400,country/DNK,dcid:Count_Person_10To14Years +1926,334100,country/DNK,dcid:Count_Person_10To14Years +1927,331400,country/DNK,dcid:Count_Person_10To14Years +1928,326200,country/DNK,dcid:Count_Person_10To14Years +1929,324200,country/DNK,dcid:Count_Person_10To14Years +1930,318800,country/DNK,dcid:Count_Person_10To14Years +1931,329600,country/DNK,dcid:Count_Person_10To14Years +1932,335700,country/DNK,dcid:Count_Person_10To14Years +1933,336700,country/DNK,dcid:Count_Person_10To14Years +1934,337300,country/DNK,dcid:Count_Person_10To14Years +1935,340600,country/DNK,dcid:Count_Person_10To14Years +1936,332000,country/DNK,dcid:Count_Person_10To14Years +1937,326100,country/DNK,dcid:Count_Person_10To14Years +1938,322200,country/DNK,dcid:Count_Person_10To14Years +1939,318200,country/DNK,dcid:Count_Person_10To14Years +1940,310800,country/DNK,dcid:Count_Person_10To14Years +1941,306800,country/DNK,dcid:Count_Person_10To14Years +1942,302600,country/DNK,dcid:Count_Person_10To14Years +1943,300700,country/DNK,dcid:Count_Person_10To14Years +1944,295900,country/DNK,dcid:Count_Person_10To14Years +1945,296800,country/DNK,dcid:Count_Person_10To14Years +1946,294500,country/DNK,dcid:Count_Person_10To14Years +1947,297500,country/DNK,dcid:Count_Person_10To14Years +1948,300200,country/DNK,dcid:Count_Person_10To14Years +1949,306100,country/DNK,dcid:Count_Person_10To14Years +1950,310800,country/DNK,dcid:Count_Person_10To14Years +1951,316400,country/DNK,dcid:Count_Person_10To14Years +1952,321000,country/DNK,dcid:Count_Person_10To14Years +1953,334400,country/DNK,dcid:Count_Person_10To14Years +1954,350000,country/DNK,dcid:Count_Person_10To14Years +1955,372400,country/DNK,dcid:Count_Person_10To14Years +1956,396400,country/DNK,dcid:Count_Person_10To14Years +1957,420200,country/DNK,dcid:Count_Person_10To14Years +1958,430800,country/DNK,dcid:Count_Person_10To14Years +1959,433200,country/DNK,dcid:Count_Person_10To14Years +1960,423500,country/DNK,dcid:Count_Person_10To14Years +1961,409800,country/DNK,dcid:Count_Person_10To14Years +1962,392500,country/DNK,dcid:Count_Person_10To14Years +1963,380800,country/DNK,dcid:Count_Person_10To14Years +1964,374900,country/DNK,dcid:Count_Person_10To14Years +1965,372700,country/DNK,dcid:Count_Person_10To14Years +1966,370300,country/DNK,dcid:Count_Person_10To14Years +1967,371700,country/DNK,dcid:Count_Person_10To14Years +1968,370800,country/DNK,dcid:Count_Person_10To14Years +1969,368900,country/DNK,dcid:Count_Person_10To14Years +1970,367900,country/DNK,dcid:Count_Person_10To14Years +1971,368642,country/DNK,dcid:Count_Person_10To14Years +1972,369102,country/DNK,dcid:Count_Person_10To14Years +1973,371644,country/DNK,dcid:Count_Person_10To14Years +1974,379554,country/DNK,dcid:Count_Person_10To14Years +1975,388669,country/DNK,dcid:Count_Person_10To14Years +1976,397485,country/DNK,dcid:Count_Person_10To14Years +1977,409706,country/DNK,dcid:Count_Person_10To14Years +1978,414233,country/DNK,dcid:Count_Person_10To14Years +1979,407315,country/DNK,dcid:Count_Person_10To14Years +1980,396781,country/DNK,dcid:Count_Person_10To14Years +1981,383413,country/DNK,dcid:Count_Person_10To14Years +1982,371072,country/DNK,dcid:Count_Person_10To14Years +1983,365514,country/DNK,dcid:Count_Person_10To14Years +1984,363119,country/DNK,dcid:Count_Person_10To14Years +1985,363397,country/DNK,dcid:Count_Person_10To14Years +1986,364856,country/DNK,dcid:Count_Person_10To14Years +1987,356041,country/DNK,dcid:Count_Person_10To14Years +1988,343771,country/DNK,dcid:Count_Person_10To14Years +1989,334881,country/DNK,dcid:Count_Person_10To14Years +1990,323684,country/DNK,dcid:Count_Person_10To14Years +1991,309826,country/DNK,dcid:Count_Person_10To14Years +1992,298752,country/DNK,dcid:Count_Person_10To14Years +1993,290752,country/DNK,dcid:Count_Person_10To14Years +1994,280521,country/DNK,dcid:Count_Person_10To14Years +1995,273930,country/DNK,dcid:Count_Person_10To14Years +1996,272987,country/DNK,dcid:Count_Person_10To14Years +1997,276633,country/DNK,dcid:Count_Person_10To14Years +1998,280579,country/DNK,dcid:Count_Person_10To14Years +1999,289167,country/DNK,dcid:Count_Person_10To14Years +2000,298751,country/DNK,dcid:Count_Person_10To14Years +2001,308866,country/DNK,dcid:Count_Person_10To14Years +2002,318443,country/DNK,dcid:Count_Person_10To14Years +2003,330248,country/DNK,dcid:Count_Person_10To14Years +2004,338321,country/DNK,dcid:Count_Person_10To14Years +2005,346028,country/DNK,dcid:Count_Person_10To14Years +2006,350912,country/DNK,dcid:Count_Person_10To14Years +2007,353054,country/DNK,dcid:Count_Person_10To14Years +2008,351872,country/DNK,dcid:Count_Person_10To14Years +2009,350079,country/DNK,dcid:Count_Person_10To14Years +2010,345377,country/DNK,dcid:Count_Person_10To14Years +2011,341725,country/DNK,dcid:Count_Person_10To14Years +2012,338707,country/DNK,dcid:Count_Person_10To14Years +2013,335120,country/DNK,dcid:Count_Person_10To14Years +2014,333742,country/DNK,dcid:Count_Person_10To14Years +2015,333332,country/DNK,dcid:Count_Person_10To14Years +2016,332901,country/DNK,dcid:Count_Person_10To14Years +2017,335062,country/DNK,dcid:Count_Person_10To14Years +2018,337091,country/DNK,dcid:Count_Person_10To14Years +2019,339254,country/DNK,dcid:Count_Person_10To14Years +2020,338629,country/DNK,dcid:Count_Person_10To14Years +2021,338574,country/DNK,dcid:Count_Person_10To14Years +2022,332805,country/DNK,dcid:Count_Person_10To14Years +2023,329873,country/DNK,dcid:Count_Person_10To14Years +2024,320521,country/DNK,dcid:Count_Person_10To14Years +2025,314443,country/DNK,dcid:Count_Person_10To14Years +2026,309043,country/DNK,dcid:Count_Person_10To14Years +1901,237100,country/DNK,dcid:Count_Person_15To19Years +1902,240900,country/DNK,dcid:Count_Person_15To19Years +1903,241700,country/DNK,dcid:Count_Person_15To19Years +1904,243800,country/DNK,dcid:Count_Person_15To19Years +1905,242800,country/DNK,dcid:Count_Person_15To19Years +1906,243200,country/DNK,dcid:Count_Person_15To19Years +1907,243000,country/DNK,dcid:Count_Person_15To19Years +1908,244900,country/DNK,dcid:Count_Person_15To19Years +1909,247500,country/DNK,dcid:Count_Person_15To19Years +1910,251700,country/DNK,dcid:Count_Person_15To19Years +1911,255000,country/DNK,dcid:Count_Person_15To19Years +1912,261200,country/DNK,dcid:Count_Person_15To19Years +1913,264200,country/DNK,dcid:Count_Person_15To19Years +1914,268500,country/DNK,dcid:Count_Person_15To19Years +1915,272600,country/DNK,dcid:Count_Person_15To19Years +1916,279300,country/DNK,dcid:Count_Person_15To19Years +1917,280200,country/DNK,dcid:Count_Person_15To19Years +1918,286400,country/DNK,dcid:Count_Person_15To19Years +1919,289500,country/DNK,dcid:Count_Person_15To19Years +1920,293500,country/DNK,dcid:Count_Person_15To19Years +1921,312500,country/DNK,dcid:Count_Person_15To19Years +1922,318200,country/DNK,dcid:Count_Person_15To19Years +1923,320600,country/DNK,dcid:Count_Person_15To19Years +1924,323500,country/DNK,dcid:Count_Person_15To19Years +1925,327300,country/DNK,dcid:Count_Person_15To19Years +1926,332000,country/DNK,dcid:Count_Person_15To19Years +1927,332600,country/DNK,dcid:Count_Person_15To19Years +1928,334700,country/DNK,dcid:Count_Person_15To19Years +1929,334300,country/DNK,dcid:Count_Person_15To19Years +1930,332800,country/DNK,dcid:Count_Person_15To19Years +1931,328300,country/DNK,dcid:Count_Person_15To19Years +1932,326800,country/DNK,dcid:Count_Person_15To19Years +1933,321100,country/DNK,dcid:Count_Person_15To19Years +1934,320600,country/DNK,dcid:Count_Person_15To19Years +1935,316300,country/DNK,dcid:Count_Person_15To19Years +1936,325900,country/DNK,dcid:Count_Person_15To19Years +1937,331900,country/DNK,dcid:Count_Person_15To19Years +1938,334300,country/DNK,dcid:Count_Person_15To19Years +1939,335200,country/DNK,dcid:Count_Person_15To19Years +1940,339200,country/DNK,dcid:Count_Person_15To19Years +1941,330200,country/DNK,dcid:Count_Person_15To19Years +1942,324400,country/DNK,dcid:Count_Person_15To19Years +1943,320800,country/DNK,dcid:Count_Person_15To19Years +1944,316800,country/DNK,dcid:Count_Person_15To19Years +1945,309100,country/DNK,dcid:Count_Person_15To19Years +1946,301400,country/DNK,dcid:Count_Person_15To19Years +1947,296400,country/DNK,dcid:Count_Person_15To19Years +1948,294400,country/DNK,dcid:Count_Person_15To19Years +1949,290600,country/DNK,dcid:Count_Person_15To19Years +1950,291600,country/DNK,dcid:Count_Person_15To19Years +1951,292200,country/DNK,dcid:Count_Person_15To19Years +1952,295500,country/DNK,dcid:Count_Person_15To19Years +1953,298400,country/DNK,dcid:Count_Person_15To19Years +1954,304700,country/DNK,dcid:Count_Person_15To19Years +1955,308400,country/DNK,dcid:Count_Person_15To19Years +1956,314100,country/DNK,dcid:Count_Person_15To19Years +1957,318100,country/DNK,dcid:Count_Person_15To19Years +1958,331200,country/DNK,dcid:Count_Person_15To19Years +1959,346800,country/DNK,dcid:Count_Person_15To19Years +1960,369000,country/DNK,dcid:Count_Person_15To19Years +1961,392900,country/DNK,dcid:Count_Person_15To19Years +1962,416800,country/DNK,dcid:Count_Person_15To19Years +1963,428100,country/DNK,dcid:Count_Person_15To19Years +1964,430400,country/DNK,dcid:Count_Person_15To19Years +1965,421400,country/DNK,dcid:Count_Person_15To19Years +1966,409000,country/DNK,dcid:Count_Person_15To19Years +1967,392500,country/DNK,dcid:Count_Person_15To19Years +1968,380900,country/DNK,dcid:Count_Person_15To19Years +1969,374800,country/DNK,dcid:Count_Person_15To19Years +1970,372900,country/DNK,dcid:Count_Person_15To19Years +1971,372627,country/DNK,dcid:Count_Person_15To19Years +1972,373107,country/DNK,dcid:Count_Person_15To19Years +1973,372739,country/DNK,dcid:Count_Person_15To19Years +1974,371599,country/DNK,dcid:Count_Person_15To19Years +1975,370343,country/DNK,dcid:Count_Person_15To19Years +1976,369106,country/DNK,dcid:Count_Person_15To19Years +1977,369788,country/DNK,dcid:Count_Person_15To19Years +1978,372923,country/DNK,dcid:Count_Person_15To19Years +1979,380980,country/DNK,dcid:Count_Person_15To19Years +1980,390803,country/DNK,dcid:Count_Person_15To19Years +1981,400275,country/DNK,dcid:Count_Person_15To19Years +1982,411990,country/DNK,dcid:Count_Person_15To19Years +1983,416032,country/DNK,dcid:Count_Person_15To19Years +1984,408957,country/DNK,dcid:Count_Person_15To19Years +1985,398209,country/DNK,dcid:Count_Person_15To19Years +1986,385401,country/DNK,dcid:Count_Person_15To19Years +1987,374462,country/DNK,dcid:Count_Person_15To19Years +1988,369348,country/DNK,dcid:Count_Person_15To19Years +1989,366335,country/DNK,dcid:Count_Person_15To19Years +1990,366630,country/DNK,dcid:Count_Person_15To19Years +1991,368320,country/DNK,dcid:Count_Person_15To19Years +1992,359832,country/DNK,dcid:Count_Person_15To19Years +1993,347901,country/DNK,dcid:Count_Person_15To19Years +1994,339477,country/DNK,dcid:Count_Person_15To19Years +1995,328417,country/DNK,dcid:Count_Person_15To19Years +1996,316104,country/DNK,dcid:Count_Person_15To19Years +1997,305507,country/DNK,dcid:Count_Person_15To19Years +1998,297457,country/DNK,dcid:Count_Person_15To19Years +1999,287570,country/DNK,dcid:Count_Person_15To19Years +2000,281333,country/DNK,dcid:Count_Person_15To19Years +2001,278971,country/DNK,dcid:Count_Person_15To19Years +2002,282552,country/DNK,dcid:Count_Person_15To19Years +2003,286766,country/DNK,dcid:Count_Person_15To19Years +2004,295094,country/DNK,dcid:Count_Person_15To19Years +2005,304582,country/DNK,dcid:Count_Person_15To19Years +2006,314213,country/DNK,dcid:Count_Person_15To19Years +2007,322821,country/DNK,dcid:Count_Person_15To19Years +2008,334263,country/DNK,dcid:Count_Person_15To19Years +2009,342927,country/DNK,dcid:Count_Person_15To19Years +2010,350928,country/DNK,dcid:Count_Person_15To19Years +2011,356466,country/DNK,dcid:Count_Person_15To19Years +2012,359125,country/DNK,dcid:Count_Person_15To19Years +2013,358224,country/DNK,dcid:Count_Person_15To19Years +2014,356746,country/DNK,dcid:Count_Person_15To19Years +2015,352904,country/DNK,dcid:Count_Person_15To19Years +2016,350964,country/DNK,dcid:Count_Person_15To19Years +2017,349350,country/DNK,dcid:Count_Person_15To19Years +2018,345980,country/DNK,dcid:Count_Person_15To19Years +2019,344415,country/DNK,dcid:Count_Person_15To19Years +2020,343282,country/DNK,dcid:Count_Person_15To19Years +2021,341466,country/DNK,dcid:Count_Person_15To19Years +2022,343723,country/DNK,dcid:Count_Person_15To19Years +2023,347923,country/DNK,dcid:Count_Person_15To19Years +2024,350913,country/DNK,dcid:Count_Person_15To19Years +2025,351739,country/DNK,dcid:Count_Person_15To19Years +2026,352953,country/DNK,dcid:Count_Person_15To19Years +1901,206500,country/DNK,dcid:Count_Person_20To24Years +1902,208100,country/DNK,dcid:Count_Person_20To24Years +1903,212600,country/DNK,dcid:Count_Person_20To24Years +1904,215800,country/DNK,dcid:Count_Person_20To24Years +1905,221100,country/DNK,dcid:Count_Person_20To24Years +1906,224200,country/DNK,dcid:Count_Person_20To24Years +1907,225900,country/DNK,dcid:Count_Person_20To24Years +1908,226100,country/DNK,dcid:Count_Person_20To24Years +1909,229200,country/DNK,dcid:Count_Person_20To24Years +1910,227700,country/DNK,dcid:Count_Person_20To24Years +1911,228300,country/DNK,dcid:Count_Person_20To24Years +1912,228900,country/DNK,dcid:Count_Person_20To24Years +1913,229700,country/DNK,dcid:Count_Person_20To24Years +1914,230200,country/DNK,dcid:Count_Person_20To24Years +1915,234800,country/DNK,dcid:Count_Person_20To24Years +1916,241000,country/DNK,dcid:Count_Person_20To24Years +1917,250300,country/DNK,dcid:Count_Person_20To24Years +1918,255900,country/DNK,dcid:Count_Person_20To24Years +1919,261500,country/DNK,dcid:Count_Person_20To24Years +1920,266800,country/DNK,dcid:Count_Person_20To24Years +1921,285400,country/DNK,dcid:Count_Person_20To24Years +1922,287900,country/DNK,dcid:Count_Person_20To24Years +1923,295100,country/DNK,dcid:Count_Person_20To24Years +1924,297700,country/DNK,dcid:Count_Person_20To24Years +1925,302800,country/DNK,dcid:Count_Person_20To24Years +1926,304400,country/DNK,dcid:Count_Person_20To24Years +1927,308200,country/DNK,dcid:Count_Person_20To24Years +1928,309000,country/DNK,dcid:Count_Person_20To24Years +1929,311300,country/DNK,dcid:Count_Person_20To24Years +1930,315200,country/DNK,dcid:Count_Person_20To24Years +1931,319500,country/DNK,dcid:Count_Person_20To24Years +1932,324600,country/DNK,dcid:Count_Person_20To24Years +1933,330500,country/DNK,dcid:Count_Person_20To24Years +1934,331900,country/DNK,dcid:Count_Person_20To24Years +1935,331000,country/DNK,dcid:Count_Person_20To24Years +1936,326500,country/DNK,dcid:Count_Person_20To24Years +1937,323800,country/DNK,dcid:Count_Person_20To24Years +1938,317600,country/DNK,dcid:Count_Person_20To24Years +1939,316800,country/DNK,dcid:Count_Person_20To24Years +1940,313500,country/DNK,dcid:Count_Person_20To24Years +1941,321400,country/DNK,dcid:Count_Person_20To24Years +1942,328200,country/DNK,dcid:Count_Person_20To24Years +1943,331000,country/DNK,dcid:Count_Person_20To24Years +1944,332200,country/DNK,dcid:Count_Person_20To24Years +1945,336000,country/DNK,dcid:Count_Person_20To24Years +1946,324100,country/DNK,dcid:Count_Person_20To24Years +1947,314300,country/DNK,dcid:Count_Person_20To24Years +1948,308400,country/DNK,dcid:Count_Person_20To24Years +1949,303200,country/DNK,dcid:Count_Person_20To24Years +1950,297300,country/DNK,dcid:Count_Person_20To24Years +1951,295700,country/DNK,dcid:Count_Person_20To24Years +1952,290300,country/DNK,dcid:Count_Person_20To24Years +1953,289100,country/DNK,dcid:Count_Person_20To24Years +1954,286800,country/DNK,dcid:Count_Person_20To24Years +1955,287700,country/DNK,dcid:Count_Person_20To24Years +1956,285600,country/DNK,dcid:Count_Person_20To24Years +1957,286800,country/DNK,dcid:Count_Person_20To24Years +1958,288000,country/DNK,dcid:Count_Person_20To24Years +1959,294800,country/DNK,dcid:Count_Person_20To24Years +1960,300200,country/DNK,dcid:Count_Person_20To24Years +1961,306000,country/DNK,dcid:Count_Person_20To24Years +1962,312100,country/DNK,dcid:Count_Person_20To24Years +1963,326600,country/DNK,dcid:Count_Person_20To24Years +1964,342600,country/DNK,dcid:Count_Person_20To24Years +1965,365100,country/DNK,dcid:Count_Person_20To24Years +1966,387800,country/DNK,dcid:Count_Person_20To24Years +1967,411900,country/DNK,dcid:Count_Person_20To24Years +1968,424400,country/DNK,dcid:Count_Person_20To24Years +1969,426000,country/DNK,dcid:Count_Person_20To24Years +1970,419200,country/DNK,dcid:Count_Person_20To24Years +1971,412394,country/DNK,dcid:Count_Person_20To24Years +1972,394630,country/DNK,dcid:Count_Person_20To24Years +1973,383967,country/DNK,dcid:Count_Person_20To24Years +1974,380567,country/DNK,dcid:Count_Person_20To24Years +1975,377236,country/DNK,dcid:Count_Person_20To24Years +1976,372702,country/DNK,dcid:Count_Person_20To24Years +1977,373896,country/DNK,dcid:Count_Person_20To24Years +1978,373608,country/DNK,dcid:Count_Person_20To24Years +1979,371998,country/DNK,dcid:Count_Person_20To24Years +1980,371748,country/DNK,dcid:Count_Person_20To24Years +1981,371568,country/DNK,dcid:Count_Person_20To24Years +1982,371448,country/DNK,dcid:Count_Person_20To24Years +1983,373876,country/DNK,dcid:Count_Person_20To24Years +1984,381828,country/DNK,dcid:Count_Person_20To24Years +1985,391867,country/DNK,dcid:Count_Person_20To24Years +1986,403399,country/DNK,dcid:Count_Person_20To24Years +1987,417417,country/DNK,dcid:Count_Person_20To24Years +1988,421643,country/DNK,dcid:Count_Person_20To24Years +1989,413469,country/DNK,dcid:Count_Person_20To24Years +1990,402112,country/DNK,dcid:Count_Person_20To24Years +1991,389685,country/DNK,dcid:Count_Person_20To24Years +1992,378503,country/DNK,dcid:Count_Person_20To24Years +1993,374324,country/DNK,dcid:Count_Person_20To24Years +1994,372865,country/DNK,dcid:Count_Person_20To24Years +1995,373891,country/DNK,dcid:Count_Person_20To24Years +1996,377173,country/DNK,dcid:Count_Person_20To24Years +1997,369767,country/DNK,dcid:Count_Person_20To24Years +1998,357920,country/DNK,dcid:Count_Person_20To24Years +1999,350075,country/DNK,dcid:Count_Person_20To24Years +2000,339787,country/DNK,dcid:Count_Person_20To24Years +2001,326414,country/DNK,dcid:Count_Person_20To24Years +2002,315966,country/DNK,dcid:Count_Person_20To24Years +2003,308389,country/DNK,dcid:Count_Person_20To24Years +2004,298461,country/DNK,dcid:Count_Person_20To24Years +2005,292541,country/DNK,dcid:Count_Person_20To24Years +2006,291367,country/DNK,dcid:Count_Person_20To24Years +2007,296255,country/DNK,dcid:Count_Person_20To24Years +2008,303797,country/DNK,dcid:Count_Person_20To24Years +2009,315695,country/DNK,dcid:Count_Person_20To24Years +2010,326535,country/DNK,dcid:Count_Person_20To24Years +2011,337459,country/DNK,dcid:Count_Person_20To24Years +2012,347475,country/DNK,dcid:Count_Person_20To24Years +2013,359625,country/DNK,dcid:Count_Person_20To24Years +2014,368274,country/DNK,dcid:Count_Person_20To24Years +2015,377040,country/DNK,dcid:Count_Person_20To24Years +2016,386749,country/DNK,dcid:Count_Person_20To24Years +2017,391322,country/DNK,dcid:Count_Person_20To24Years +2018,391572,country/DNK,dcid:Count_Person_20To24Years +2019,388990,country/DNK,dcid:Count_Person_20To24Years +2020,381891,country/DNK,dcid:Count_Person_20To24Years +2021,375904,country/DNK,dcid:Count_Person_20To24Years +2022,375447,country/DNK,dcid:Count_Person_20To24Years +2023,375378,country/DNK,dcid:Count_Person_20To24Years +2024,375678,country/DNK,dcid:Count_Person_20To24Years +2025,377613,country/DNK,dcid:Count_Person_20To24Years +2026,378905,country/DNK,dcid:Count_Person_20To24Years +1901,177600,country/DNK,dcid:Count_Person_25To29Years +1902,184900,country/DNK,dcid:Count_Person_25To29Years +1903,187800,country/DNK,dcid:Count_Person_25To29Years +1904,192300,country/DNK,dcid:Count_Person_25To29Years +1905,196600,country/DNK,dcid:Count_Person_25To29Years +1906,200900,country/DNK,dcid:Count_Person_25To29Years +1907,200400,country/DNK,dcid:Count_Person_25To29Years +1908,202700,country/DNK,dcid:Count_Person_25To29Years +1909,204200,country/DNK,dcid:Count_Person_25To29Years +1910,208100,country/DNK,dcid:Count_Person_25To29Years +1911,208300,country/DNK,dcid:Count_Person_25To29Years +1912,211200,country/DNK,dcid:Count_Person_25To29Years +1913,212700,country/DNK,dcid:Count_Person_25To29Years +1914,215600,country/DNK,dcid:Count_Person_25To29Years +1915,214700,country/DNK,dcid:Count_Person_25To29Years +1916,216900,country/DNK,dcid:Count_Person_25To29Years +1917,220200,country/DNK,dcid:Count_Person_25To29Years +1918,223600,country/DNK,dcid:Count_Person_25To29Years +1919,225800,country/DNK,dcid:Count_Person_25To29Years +1920,232200,country/DNK,dcid:Count_Person_25To29Years +1921,249500,country/DNK,dcid:Count_Person_25To29Years +1922,257000,country/DNK,dcid:Count_Person_25To29Years +1923,262200,country/DNK,dcid:Count_Person_25To29Years +1924,269100,country/DNK,dcid:Count_Person_25To29Years +1925,273500,country/DNK,dcid:Count_Person_25To29Years +1926,279700,country/DNK,dcid:Count_Person_25To29Years +1927,281300,country/DNK,dcid:Count_Person_25To29Years +1928,285400,country/DNK,dcid:Count_Person_25To29Years +1929,287000,country/DNK,dcid:Count_Person_25To29Years +1930,290300,country/DNK,dcid:Count_Person_25To29Years +1931,291900,country/DNK,dcid:Count_Person_25To29Years +1932,298000,country/DNK,dcid:Count_Person_25To29Years +1933,302800,country/DNK,dcid:Count_Person_25To29Years +1934,309500,country/DNK,dcid:Count_Person_25To29Years +1935,316900,country/DNK,dcid:Count_Person_25To29Years +1936,322600,country/DNK,dcid:Count_Person_25To29Years +1937,325700,country/DNK,dcid:Count_Person_25To29Years +1938,329900,country/DNK,dcid:Count_Person_25To29Years +1939,329600,country/DNK,dcid:Count_Person_25To29Years +1940,328000,country/DNK,dcid:Count_Person_25To29Years +1941,322000,country/DNK,dcid:Count_Person_25To29Years +1942,319800,country/DNK,dcid:Count_Person_25To29Years +1943,314000,country/DNK,dcid:Count_Person_25To29Years +1944,313900,country/DNK,dcid:Count_Person_25To29Years +1945,310100,country/DNK,dcid:Count_Person_25To29Years +1946,320000,country/DNK,dcid:Count_Person_25To29Years +1947,323000,country/DNK,dcid:Count_Person_25To29Years +1948,322900,country/DNK,dcid:Count_Person_25To29Years +1949,321800,country/DNK,dcid:Count_Person_25To29Years +1950,323800,country/DNK,dcid:Count_Person_25To29Years +1951,315900,country/DNK,dcid:Count_Person_25To29Years +1952,307900,country/DNK,dcid:Count_Person_25To29Years +1953,303300,country/DNK,dcid:Count_Person_25To29Years +1954,299700,country/DNK,dcid:Count_Person_25To29Years +1955,293800,country/DNK,dcid:Count_Person_25To29Years +1956,289300,country/DNK,dcid:Count_Person_25To29Years +1957,283500,country/DNK,dcid:Count_Person_25To29Years +1958,280600,country/DNK,dcid:Count_Person_25To29Years +1959,277500,country/DNK,dcid:Count_Person_25To29Years +1960,278800,country/DNK,dcid:Count_Person_25To29Years +1961,278200,country/DNK,dcid:Count_Person_25To29Years +1962,282100,country/DNK,dcid:Count_Person_25To29Years +1963,286700,country/DNK,dcid:Count_Person_25To29Years +1964,293400,country/DNK,dcid:Count_Person_25To29Years +1965,298100,country/DNK,dcid:Count_Person_25To29Years +1966,304500,country/DNK,dcid:Count_Person_25To29Years +1967,310800,country/DNK,dcid:Count_Person_25To29Years +1968,324300,country/DNK,dcid:Count_Person_25To29Years +1969,339000,country/DNK,dcid:Count_Person_25To29Years +1970,361700,country/DNK,dcid:Count_Person_25To29Years +1971,389155,country/DNK,dcid:Count_Person_25To29Years +1972,412196,country/DNK,dcid:Count_Person_25To29Years +1973,426265,country/DNK,dcid:Count_Person_25To29Years +1974,430266,country/DNK,dcid:Count_Person_25To29Years +1975,422402,country/DNK,dcid:Count_Person_25To29Years +1976,409001,country/DNK,dcid:Count_Person_25To29Years +1977,392990,country/DNK,dcid:Count_Person_25To29Years +1978,381479,country/DNK,dcid:Count_Person_25To29Years +1979,376713,country/DNK,dcid:Count_Person_25To29Years +1980,374797,country/DNK,dcid:Count_Person_25To29Years +1981,372788,country/DNK,dcid:Count_Person_25To29Years +1982,373292,country/DNK,dcid:Count_Person_25To29Years +1983,372349,country/DNK,dcid:Count_Person_25To29Years +1984,370260,country/DNK,dcid:Count_Person_25To29Years +1985,369801,country/DNK,dcid:Count_Person_25To29Years +1986,372681,country/DNK,dcid:Count_Person_25To29Years +1987,375024,country/DNK,dcid:Count_Person_25To29Years +1988,378750,country/DNK,dcid:Count_Person_25To29Years +1989,386330,country/DNK,dcid:Count_Person_25To29Years +1990,395977,country/DNK,dcid:Count_Person_25To29Years +1991,405846,country/DNK,dcid:Count_Person_25To29Years +1992,418859,country/DNK,dcid:Count_Person_25To29Years +1993,423701,country/DNK,dcid:Count_Person_25To29Years +1994,418181,country/DNK,dcid:Count_Person_25To29Years +1995,408250,country/DNK,dcid:Count_Person_25To29Years +1996,398393,country/DNK,dcid:Count_Person_25To29Years +1997,388442,country/DNK,dcid:Count_Person_25To29Years +1998,384397,country/DNK,dcid:Count_Person_25To29Years +1999,382635,country/DNK,dcid:Count_Person_25To29Years +2000,383401,country/DNK,dcid:Count_Person_25To29Years +2001,384918,country/DNK,dcid:Count_Person_25To29Years +2002,377237,country/DNK,dcid:Count_Person_25To29Years +2003,365296,country/DNK,dcid:Count_Person_25To29Years +2004,356967,country/DNK,dcid:Count_Person_25To29Years +2005,345714,country/DNK,dcid:Count_Person_25To29Years +2006,333422,country/DNK,dcid:Count_Person_25To29Years +2007,323822,country/DNK,dcid:Count_Person_25To29Years +2008,319723,country/DNK,dcid:Count_Person_25To29Years +2009,315123,country/DNK,dcid:Count_Person_25To29Years +2010,310970,country/DNK,dcid:Count_Person_25To29Years +2011,311548,country/DNK,dcid:Count_Person_25To29Years +2012,316190,country/DNK,dcid:Count_Person_25To29Years +2013,322222,country/DNK,dcid:Count_Person_25To29Years +2014,333707,country/DNK,dcid:Count_Person_25To29Years +2015,346358,country/DNK,dcid:Count_Person_25To29Years +2016,361983,country/DNK,dcid:Count_Person_25To29Years +2017,374117,country/DNK,dcid:Count_Person_25To29Years +2018,386777,country/DNK,dcid:Count_Person_25To29Years +2019,394889,country/DNK,dcid:Count_Person_25To29Years +2020,400810,country/DNK,dcid:Count_Person_25To29Years +2021,402836,country/DNK,dcid:Count_Person_25To29Years +2022,406075,country/DNK,dcid:Count_Person_25To29Years +2023,409553,country/DNK,dcid:Count_Person_25To29Years +2024,409715,country/DNK,dcid:Count_Person_25To29Years +2025,407325,country/DNK,dcid:Count_Person_25To29Years +2026,406458,country/DNK,dcid:Count_Person_25To29Years +1901,157900,country/DNK,dcid:Count_Person_30To34Years +1902,157900,country/DNK,dcid:Count_Person_30To34Years +1903,162000,country/DNK,dcid:Count_Person_30To34Years +1904,164400,country/DNK,dcid:Count_Person_30To34Years +1905,167200,country/DNK,dcid:Count_Person_30To34Years +1906,171500,country/DNK,dcid:Count_Person_30To34Years +1907,178800,country/DNK,dcid:Count_Person_30To34Years +1908,181200,country/DNK,dcid:Count_Person_30To34Years +1909,185800,country/DNK,dcid:Count_Person_30To34Years +1910,189600,country/DNK,dcid:Count_Person_30To34Years +1911,191900,country/DNK,dcid:Count_Person_30To34Years +1912,192100,country/DNK,dcid:Count_Person_30To34Years +1913,195200,country/DNK,dcid:Count_Person_30To34Years +1914,197000,country/DNK,dcid:Count_Person_30To34Years +1915,202100,country/DNK,dcid:Count_Person_30To34Years +1916,205300,country/DNK,dcid:Count_Person_30To34Years +1917,209400,country/DNK,dcid:Count_Person_30To34Years +1918,211600,country/DNK,dcid:Count_Person_30To34Years +1919,213900,country/DNK,dcid:Count_Person_30To34Years +1920,214100,country/DNK,dcid:Count_Person_30To34Years +1921,228400,country/DNK,dcid:Count_Person_30To34Years +1922,231000,country/DNK,dcid:Count_Person_30To34Years +1923,233400,country/DNK,dcid:Count_Person_30To34Years +1924,235800,country/DNK,dcid:Count_Person_30To34Years +1925,240500,country/DNK,dcid:Count_Person_30To34Years +1926,245400,country/DNK,dcid:Count_Person_30To34Years +1927,252400,country/DNK,dcid:Count_Person_30To34Years +1928,257700,country/DNK,dcid:Count_Person_30To34Years +1929,263300,country/DNK,dcid:Count_Person_30To34Years +1930,266300,country/DNK,dcid:Count_Person_30To34Years +1931,271500,country/DNK,dcid:Count_Person_30To34Years +1932,274300,country/DNK,dcid:Count_Person_30To34Years +1933,280600,country/DNK,dcid:Count_Person_30To34Years +1934,283600,country/DNK,dcid:Count_Person_30To34Years +1935,290100,country/DNK,dcid:Count_Person_30To34Years +1936,293800,country/DNK,dcid:Count_Person_30To34Years +1937,298500,country/DNK,dcid:Count_Person_30To34Years +1938,302100,country/DNK,dcid:Count_Person_30To34Years +1939,307500,country/DNK,dcid:Count_Person_30To34Years +1940,314000,country/DNK,dcid:Count_Person_30To34Years +1941,318300,country/DNK,dcid:Count_Person_30To34Years +1942,321500,country/DNK,dcid:Count_Person_30To34Years +1943,325900,country/DNK,dcid:Count_Person_30To34Years +1944,326000,country/DNK,dcid:Count_Person_30To34Years +1945,324200,country/DNK,dcid:Count_Person_30To34Years +1946,321500,country/DNK,dcid:Count_Person_30To34Years +1947,318200,country/DNK,dcid:Count_Person_30To34Years +1948,312600,country/DNK,dcid:Count_Person_30To34Years +1949,309900,country/DNK,dcid:Count_Person_30To34Years +1950,306800,country/DNK,dcid:Count_Person_30To34Years +1951,312200,country/DNK,dcid:Count_Person_30To34Years +1952,316300,country/DNK,dcid:Count_Person_30To34Years +1953,317500,country/DNK,dcid:Count_Person_30To34Years +1954,317900,country/DNK,dcid:Count_Person_30To34Years +1955,320200,country/DNK,dcid:Count_Person_30To34Years +1956,311200,country/DNK,dcid:Count_Person_30To34Years +1957,303600,country/DNK,dcid:Count_Person_30To34Years +1958,298300,country/DNK,dcid:Count_Person_30To34Years +1959,293800,country/DNK,dcid:Count_Person_30To34Years +1960,288400,country/DNK,dcid:Count_Person_30To34Years +1961,284800,country/DNK,dcid:Count_Person_30To34Years +1962,281700,country/DNK,dcid:Count_Person_30To34Years +1963,280700,country/DNK,dcid:Count_Person_30To34Years +1964,277600,country/DNK,dcid:Count_Person_30To34Years +1965,278600,country/DNK,dcid:Count_Person_30To34Years +1966,278900,country/DNK,dcid:Count_Person_30To34Years +1967,282300,country/DNK,dcid:Count_Person_30To34Years +1968,286500,country/DNK,dcid:Count_Person_30To34Years +1969,292500,country/DNK,dcid:Count_Person_30To34Years +1970,297500,country/DNK,dcid:Count_Person_30To34Years +1971,306562,country/DNK,dcid:Count_Person_30To34Years +1972,312692,country/DNK,dcid:Count_Person_30To34Years +1973,326124,country/DNK,dcid:Count_Person_30To34Years +1974,342140,country/DNK,dcid:Count_Person_30To34Years +1975,363469,country/DNK,dcid:Count_Person_30To34Years +1976,385607,country/DNK,dcid:Count_Person_30To34Years +1977,409425,country/DNK,dcid:Count_Person_30To34Years +1978,422680,country/DNK,dcid:Count_Person_30To34Years +1979,426387,country/DNK,dcid:Count_Person_30To34Years +1980,419026,country/DNK,dcid:Count_Person_30To34Years +1981,407617,country/DNK,dcid:Count_Person_30To34Years +1982,391255,country/DNK,dcid:Count_Person_30To34Years +1983,379217,country/DNK,dcid:Count_Person_30To34Years +1984,373941,country/DNK,dcid:Count_Person_30To34Years +1985,371797,country/DNK,dcid:Count_Person_30To34Years +1986,370839,country/DNK,dcid:Count_Person_30To34Years +1987,373109,country/DNK,dcid:Count_Person_30To34Years +1988,373119,country/DNK,dcid:Count_Person_30To34Years +1989,371422,country/DNK,dcid:Count_Person_30To34Years +1990,371020,country/DNK,dcid:Count_Person_30To34Years +1991,372986,country/DNK,dcid:Count_Person_30To34Years +1992,374680,country/DNK,dcid:Count_Person_30To34Years +1993,379260,country/DNK,dcid:Count_Person_30To34Years +1994,388146,country/DNK,dcid:Count_Person_30To34Years +1995,399003,country/DNK,dcid:Count_Person_30To34Years +1996,411014,country/DNK,dcid:Count_Person_30To34Years +1997,424853,country/DNK,dcid:Count_Person_30To34Years +1998,429897,country/DNK,dcid:Count_Person_30To34Years +1999,424268,country/DNK,dcid:Count_Person_30To34Years +2000,414200,country/DNK,dcid:Count_Person_30To34Years +2001,402345,country/DNK,dcid:Count_Person_30To34Years +2002,390899,country/DNK,dcid:Count_Person_30To34Years +2003,386495,country/DNK,dcid:Count_Person_30To34Years +2004,384040,country/DNK,dcid:Count_Person_30To34Years +2005,384180,country/DNK,dcid:Count_Person_30To34Years +2006,385137,country/DNK,dcid:Count_Person_30To34Years +2007,377378,country/DNK,dcid:Count_Person_30To34Years +2008,367679,country/DNK,dcid:Count_Person_30To34Years +2009,362079,country/DNK,dcid:Count_Person_30To34Years +2010,353369,country/DNK,dcid:Count_Person_30To34Years +2011,342593,country/DNK,dcid:Count_Person_30To34Years +2012,333621,country/DNK,dcid:Count_Person_30To34Years +2013,328063,country/DNK,dcid:Count_Person_30To34Years +2014,321890,country/DNK,dcid:Count_Person_30To34Years +2015,319869,country/DNK,dcid:Count_Person_30To34Years +2016,323168,country/DNK,dcid:Count_Person_30To34Years diff --git a/statvar_imports/denmark_demographics/test_data/population_sex_age_time_output.tmcf b/statvar_imports/denmark_demographics/test_data/population_sex_age_time_output.tmcf new file mode 100644 index 0000000000..9a3744e0e4 --- /dev/null +++ b/statvar_imports/denmark_demographics/test_data/population_sex_age_time_output.tmcf @@ -0,0 +1,6 @@ +Node: E:population_sex_age_time_output->E0 +observationDate: C:population_sex_age_time_output->observationDate +value: C:population_sex_age_time_output->value +observationAbout: C:population_sex_age_time_output->observationAbout +variableMeasured: C:population_sex_age_time_output->variableMeasured +typeOf: dcs:StatVarObservation