Description of football data column names
HomeTeam:Description: The name of the team that played at home.
Data Type: String
AwayTeam:Description: The name of the team that played away.
Data Type: String
FTHG(Full Time Home Goals):Description: The number of goals scored by the home team at the end of the match.
Data Type: Integer
FTAG(Full Time Away Goals):Description: The number of goals scored by the away team at the end of the match.
Data Type: Integer
TotalHomeGoals:Description: The total number of goals scored by the home team across all matches in the dataset.
Data Type: Integer
Note: This column is created during the data analysis step by aggregating
FTHGvalues for each home team.
TotalAwayGoals:Description: The total number of goals scored by the away team across all matches in the dataset.
Data Type: Integer
Note: This column is created during the data analysis step by aggregating
FTAGvalues for each away team.
TotalGoals:Description: The total number of goals scored by each team (both home and away) across all matches in the dataset.
Data Type: Integer
Note: This column is created by summing
TotalHomeGoalsandTotalAwayGoalsfor each team.

