Fertility Rate (Selected Gapminder, V12) (2017)
@owid.fertility_rate
@owid.fertility_rate
Data is that of version 12 of Gapminder, the latest version as of 2019. This is the full fertility rate dataset published by Gapminder.
Gapminder's sources and methodology if well-documented in its dataset at: https://www.gapminder.org/data/
It notes its data sources during three key periods of time:
Version 12 of the dataset extends back to the year 1800. Version 6 of Gapminder's fertility series includes data for a few countries further than 1800. We have included more historic data from Version 6 for Finland, the United Kingdom and Sweden. All data from 1800 onwards is from Version 12; data from pre-1800 is from Version 6.
There are significant uncertainties in data for many countries pre-1950. To develop full series back to 1800 for all countries, Gapminder combines published estimates within the academic literature and national statistics, with their own guesstimates and extrapolations for countries without published estimates. This series presents the selective Gapminder dataset: we have removed data points which were estimated by Gapminder with high uncertainty and instead only include those from published sources or the United Nations dataset.
We also publish the full dataset from Gapminder for users looking for a complete series. However, we should highlight that some of these estimates have a high degree of uncertainty. This dataset can be accessed here: https://ourworldindata.org/grapher/fertility-rate-complete-gapminder
CREATE TABLE owid_fertility_rate_1 (
"country" VARCHAR,
"year" INTEGER,
"fertility_rate_select_gapminder_v12_2017" FLOAT -- Fertility Rate, Select Gapminder, V12, 2017
);CREATE TABLE owid_fertility_rate_2 (
"country" VARCHAR,
"year" INTEGER,
"fertility_rate" FLOAT,
"fertility_rate_hist" FLOAT
);CREATE TABLE owid_fertility_rate_3 (
"country" VARCHAR,
"year" INTEGER,
"fertility_rate" FLOAT,
"fertility_rate_hist" FLOAT
);CREATE TABLE owid_fertility_rate_by_age_1 (
"country" VARCHAR,
"age" INTEGER,
"year_as_dimension" INTEGER,
"asfr" FLOAT
);CREATE TABLE owid_fertility_rate_by_age_2 (
"country" VARCHAR,
"age" INTEGER,
"year_as_dimension" INTEGER,
"asfr" FLOAT
);Anyone who has the link will be able to view this.