This dataset, jpn_prefectures_tbl_df, is a tibble representing Japan’s 47 prefectures arranged in a 7x7 grid layout. It includes prefectural codes, names in both romaji and kanji, regions, major islands, and grid coordinates.
data(jpn_prefectures_tbl_df)A tibble with 47 observations and 8 variables:
JIS code of the prefecture (character)
Prefectural name in romaji (character)
Geographical region of the prefecture (factor)
Major island the prefecture belongs to (character)
Prefectural name in kanji (character)
Region name in kanji (factor)
X coordinate for grid placement (integer)
Y coordinate for grid placement (integer)
The dataset name has been kept as 'jpn_prefectures_tbl_df' to avoid confusion with other datasets in the R ecosystem. This naming convention helps distinguish this dataset as part of the JapanAPIs package and assists users in identifying its specific characteristics. The suffix 'tbl_df' indicates that the dataset is a tibble object. The original content has not been modified in any way.