### Load and Display Initial Data Source: https://cran.r-project.org/web/packages/EUfootball/vignettes/EUfootball.html Loads the EUfootball package and displays the first few rows of the Matches dataset. Ensure the package is installed and loaded before running. ```r library(EUfootball) head(Matches) ``` -------------------------------- ### Analyze Matches Dataset Source: https://cran.r-project.org/web/packages/EUfootball/refman/EUfootball.html Demonstrates basic analysis of the 'Matches' dataset. Calculates the average goals scored per 90 minutes by home teams and generates a frequency table of matches by league. ```r data(Matches) mean(Matches$Goals90Home) table(Matches$League) ``` -------------------------------- ### Load Matches Dataset Source: https://cran.r-project.org/web/packages/EUfootball/refman/EUfootball.html Loads the 'Matches' dataset into the R environment. This is a prerequisite for accessing the football match data. ```r data(Matches) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.