This dataset, tokyo_wards_tbl_df, is a tibble containing information on the 23 special wards of Tokyo. It includes ward numbers, names in both romaji and kanji, along with x and y coordinates for spatial layout.
data(tokyo_wards_tbl_df)A tibble with 23 observations and 5 variables:
Ward number (character)
Ward name in romaji (character)
Ward name in kanji (character)
X coordinate for grid placement (numeric)
Y coordinate for grid placement (numeric)
The dataset name has been kept as 'tokyo_wards_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.