This dataset, japan_population_tbl_df, is a tibble containing Japan’s population over time and space. In this dataset you will find the raw population numbers for the prefectures, going as far back as the 1870s. The dataset preserves the original structure from its source on Kaggle.
data(japan_population_tbl_df)A tibble with 2,632 observations and 7 variables:
Name of the prefecture (character)
Year of the population observation (numeric)
Total population in that year (numeric)
Name of the prefectural capital (character)
Geographic region of the prefecture (character)
Estimated area of the prefecture in square kilometers (numeric)
Name of the island to which the prefecture belongs (character)
The dataset name has been kept as 'japan_population_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.