sources
Data license: CC-BY
1 row where datasetId = 4901 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date)
id ▲ | name | description | createdAt | updatedAt | datasetId | additionalInfo | link | dataPublishedBy |
---|---|---|---|---|---|---|---|---|
17632 | UN World Marriage Data (2019) and OECD (2017) | { "link": "UN: https://population.un.org/ffps/Index.html#/maritalStatusData; </br> OECD: http://www.oecd.org/els/soc/SF_3_1_Marriage_divorce_rates.xlsx", "retrievedDate": "15/01/20", "additionalInfo": "\n<strong>Definition and sources by country</strong></br>\nFor OECD countries, figures correspond to mean age at first marriage from the OECD Family Database. For other countries, figures correspond to Singulate Mean Age at Marriage from the UN World Marriage Data 2019. \n\nThe Singulate Mean Age at Marriage (SMAM) is an indirect estimate of the average age at first marriage, and is calculated from survey data on marital status by age.\n\nTo calculate the SMAM, the UN World Marriage Database combines multiple sources for each country, including both census and survey estimates. For comparability, we have chosen to report only one source per country, favouring the source that provides the longest time series for each country. \n\nThe following is a list of sources underlying our UN estimates, from most to least coverage: UNSD, DHS_STATcompiler, National Statistics, MICS, the US Census Bureau, INED, Eurostat, and IPUMS. \n\nA full breakdown of the source used for each observation in this dataset can be found <a href=\"https://owid.cloud/app/uploads/2020/01/oecd-un-mix-final-metadata-stand.csv\">here</a>.\n\n<strong>Further notes on Singulate Mean Age at Marriage</strong></br>\nThe Singulate Mean Age at Marriage is derived from the proportion of single persons of each sex in successive age groups. The main assumption involved in this computation is that change in the proportion single from age x to x+1 is a measure of the proportion of a birth cohort who married at age x. The methodology enables computation of mean age at marriage of persons (male or female) aged 15 years and above before they attain the age of 50. In other words, it provides an estimate of the average number of years lived in the never married status by those who marry before the age of 50.\n\n<strong>OECD country series notes</strong></br>\n- Estimates for Australia, New Zealand and the United States provide the median, rather than mean age at first marriage\n- For Mexico, data refer to all marriages and not only first marriage\n- For Canada, data include the legal union of two persons of the same sex in some provinces and territories from 2003 onwards, and in all of Canada from 2005 onwards.\n- For New Zealand data include civil unions. From 2007 onwards, data include those who transferred their civil union to a marriage. \n- From 2014 onwards, data for the United Kingdom include marriages between same-sex partners.", "dataPublishedBy": "United Nations, Department of Economic and Social Affairs, Population Division (2019). World Marriage Data 2019 (POP/DB/Marr/Rev2019) ; OECD Social policies and data", "dataPublisherSource": "Survey, census, national statistical agencies" } |
2020-01-15 17:26:17 | 2020-01-15 17:26:17 | Estimated average age at marriage, by gender (UN and OECD) 4901 | <strong>Definition and sources by country</strong></br> For OECD countries, figures correspond to mean age at first marriage from the OECD Family Database. For other countries, figures correspond to Singulate Mean Age at Marriage from the UN World Marriage Data 2019. The Singulate Mean Age at Marriage (SMAM) is an indirect estimate of the average age at first marriage, and is calculated from survey data on marital status by age. To calculate the SMAM, the UN World Marriage Database combines multiple sources for each country, including both census and survey estimates. For comparability, we have chosen to report only one source per country, favouring the source that provides the longest time series for each country. The following is a list of sources underlying our UN estimates, from most to least coverage: UNSD, DHS_STATcompiler, National Statistics, MICS, the US Census Bureau, INED, Eurostat, and IPUMS. A full breakdown of the source used for each observation in this dataset can be found <a href="https://owid.cloud/app/uploads/2020/01/oecd-un-mix-final-metadata-stand.csv">here</a>. <strong>Further notes on Singulate Mean Age at Marriage</strong></br> The Singulate Mean Age at Marriage is derived from the proportion of single persons of each sex in successive age groups. The main assumption involved in this computation is that change in the proportion single from age x to x+1 is a measure of the proportion of a birth cohort who married at age x. The methodology enables computation of mean age at marriage of persons (male or female) aged 15 years and above before they attain the age of 50. In other words, it provides an estimate of the average number of years lived in the never married status by those who marry before the age of 50. <strong>OECD country series notes</strong></br> - Estimates for Australia, New Zealand and the United States provide the median, rather than mean age at first marriage - For Mexico, data refer to all marriages and not only first marriage - For Canada, data include the legal … | UN: https://population.un.org/ffps/Index.html#/maritalStatusData; </br> OECD: http://www.oecd.org/els/soc/SF_3_1_Marriage_divorce_rates.xlsx | United Nations, Department of Economic and Social Affairs, Population Division (2019). World Marriage Data 2019 (POP/DB/Marr/Rev2019) ; OECD Social policies and data |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "sources" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(512) NULL , "description" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "datasetId" INTEGER NULL, additionalInfo TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.additionalInfo')) VIRTUAL, link TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.link')) VIRTUAL, dataPublishedBy TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.dataPublishedBy')) VIRTUAL, FOREIGN KEY("datasetId") REFERENCES "datasets" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "sources_datasetId" ON "sources" ("datasetId");