This dataset, japan_universities_tbl_df, is a tibble containing comprehensive data about 813 universities in Japan. It includes information such as the university name (in English and Japanese), location, type, year founded, number of faculties and departments, availability of graduate and remote programs, and difficulty and review metrics. The dataset preserves the original structure from its source on Kaggle.
data(japan_universities_tbl_df)A tibble with 813 observations and 22 variables:
Index column (numeric)
University code (character)
University name in English (character)
University name in Japanese (character)
Type of university (e.g., Public, Private) (character)
Type of university in Japanese (character)
Full address of the university (character)
Postal code (character)
Contact phone number (character)
Name of the prefecture or region in English (character)
Name of the prefecture or region in Japanese (character)
Latitude coordinate (numeric)
Longitude coordinate (numeric)
Year the university was founded (character)
Number of faculties (numeric)
Number of departments (numeric)
Whether the university has graduate programs (logical)
Whether the university offers remote programs (logical)
Average user review rating (numeric)
Number of user reviews (numeric)
Standard deviation of difficulty ratings (numeric)
Relative difficulty rank (character)
The dataset name has been kept as 'japan_universities_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.