Download detailed mortality and population data for different countries and regions in a single object from the c("\n", "Human Mortality Database").
ReadHMD( what, countries =NULL, interval ="1x1", username, password, save =FALSE, show =TRUE)
Arguments
what: What type of data are you looking for? The following options might be available for some or all the countries and regions:
"births" -- birth records;
"Dx_lexis" -- deaths by Lexis triangles;
"Ex_lexis" -- exposure-to-risk by Lexis triangles;
"population" -- population size;
"Dx" -- death counts;
"Ex" -- exposure-to-risk;
"mx" -- central death-rates;
"LT_f" -- period life tables for females;
"LT_m" -- period life tables for males;
"LT_t" -- period life tables both sexes combined;
"e0" -- period life expectancy at birth;
"Exc" -- cohort exposures;
"mxc" -- cohort death-rates;
"LT_fc" -- cohort life tables for females;
"LT_mc" -- cohort life tables for males;
"LT_tc" -- cohort life tables both sexes combined;
"e0c" -- cohort life expectancy at birth;
countries: Specify the country data you want to download by adding the HMD country code/s. Options: "AUS" "AUT", "BEL", "BGR", "BLR", "CAN", "CHL", "HRV", "HKG", "CHE","CZE", "DEUTNP", "DEUTE", "DEUTW", "DNK", "ESP", "EST", "FIN","FRATNP","FRACNP", "GRC", "HUN", "IRL", "ISL" "ISR", "ITA", "JPN","KOR", "LTU", "LUX", "LVA", "NLD", "NOR", "NZL_NP", "NZL_MA" "NZL_NM","POL", "PRT" "RUS", "SVK", "SVN", "SWE", "TWN", "UKR","GBR_NP","GBRTENW","GBRCENW","GBR_SCO", "GBR_NIR","USA". If NULL data for all the countries are downloaded at once;
interval: Datasets are given in various age and time formats based on which the records are agregated. Interval options:
"1x1" -- by age and year;
"1x5" -- by age and 5-year time interval;
"1x10" -- by age and 10-year time interval;
"5x1" -- by 5-year age group and year;
"5x5" -- by 5-year age group and 5-year time interval;
"5x10" --by 5-year age group and 10-year time interval.
username: Your HMD username. If you don't have one you can sign up for free on the Human Mortality Database website.
password: Your HMD password.
save: Do you want to save a copy of the dataset on your local machine? Logical. Default: FALSE.
show: Choose whether to display a progress bar. Logical. Default: TRUE.
Returns
A ReadHMD object that contains: - input: List with the input values (except the password).
data: Data downloaded from HMD.
download.date: Time stamp.
years: Numerical vector with the years covered in the data.
ages: Numerical vector with ages covered in the data.
Details
The Human Mortality Database (HMD) was created to provide detailed mortality and population data to researchers, students, journalists, policy analysts, and others interested in the history of human longevity. The project began as an outgrowth of earlier projects in the Department of Demography at the University of California, Berkeley, USA, and at the Max Planck Institute for Demographic Research in Rostock, Germany (see history). It is the work of two teams of researchers in the USA and Germany (see research teams), with the help of financial backers and scientific collaborators from around the world (see acknowledgements). The Center on the Economics and Development of Aging (CEDA) French Institute for Demographic Studies (INED) has also supported the further development of the database in recent years.
Examples
## Not run:# Download demographic data for 3 countries in 1x1 formatage_int <-1# age interval: 1,5year_int <-1# year interval: 1,5,10interval <- paste0(age_int,"x", year_int)# --> 1x1# And the 3 countries: Sweden Denmark and USA. We have to use the HMD codescntr <- c('SWE','DNK','USA')# Download death counts. We don't want to export data outside R.HMD_Dx <- ReadHMD(what ="Dx", countries = cntr, interval = interval, username ="user@email.com", password ="password", save =FALSE)HMD_Dx
# Download life tables for female population and export data.LTF <- ReadHMD(what ="LT_f", countries = cntr, interval = interval, username ="user@email.com", password ="password", save =TRUE)LTF
## End(Not run)