This dataset, J1League_tbl_df, is a tibble containing results of Japan's J1 League matches from 2012 to 2022. The dataset includes information such as the season, match date and time, home and away teams, goals scored, and final match result. The dataset preserves the original structure from its source on Kaggle.
data(J1League_tbl_df)A tibble with 3,213 observations and 7 variables:
Season year of the match (numeric)
Date and time of the match (POSIXct)
Home team name (character)
Away team name (character)
Number of goals scored by the home team (numeric)
Number of goals scored by the away team (numeric)
Final result of the match (character)
The dataset name has been kept as 'J1League_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.