This dataset, life_exp_japan_tbl_df, is a tibble containing life expectancy and related economic and social indicators for Japan's 47 prefectures as of 2020. It includes variables on healthcare infrastructure, education levels, income, public spending, and environmental indicators. The dataset preserves the original structure from its source on Kaggle.
data(life_exp_japan_tbl_df)A tibble with 47 observations and 23 variables:
Name of the Japanese prefecture (character)
Average life expectancy (numeric)
Number of physicians per 100,000 people (numeric)
Number of junior colleges (numeric)
Number of universities (numeric)
Number of public hospitals (numeric)
Number of psychiatric hospitals (numeric)
Number of psychiatric hospital beds (numeric)
Number of nurses per 100,000 people (numeric)
Average weekly working hours (numeric)
Average annual salary (numeric)
Number of elementary schools (numeric)
Number of sports facilities (numeric)
Number of parks (numeric)
Percentage of forest area (numeric)
Per capita income (numeric)
Population density (people per km²) (numeric)
Total number of hospitals (numeric)
Total number of hospital beds (numeric)
Number of ambulances (numeric)
Health expenditure per capita (numeric)
Education expenditure per capita (numeric)
Welfare expenditure per capita (numeric)
The dataset name has been kept as 'life_exp_japan_tbl_df' to maintain consistency with the naming conventions in the JapanAPIs package. The suffix 'tbl_df' indicates that this is a tibble data frame. The original content has not been modified in any way.