This dataset, shinkansen_stations_tbl_df, is a tibble containing information about 113 Shinkansen train stations across Japan. Each row represents a station and includes its name, the Shinkansen line it belongs to, the year it opened, the prefecture it is located in, the distance from Tokyo Station in kilometers, and the operating company. The dataset preserves the original structure from its source on Kaggle.
data(shinkansen_stations_tbl_df)A tibble with 113 observations and 6 variables:
Name of the Shinkansen station (character)
Name of the Shinkansen line (character)
Year the station opened (numeric)
Prefecture in which the station is located (character)
Distance from Tokyo Station in kilometers (numeric)
Operating company of the station (character)
The dataset name has been kept as 'shinkansen_stations_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.