Description of football data column names

  1. HomeTeam:

    • Description: The name of the team that played at home.

    • Data Type: String

  2. AwayTeam:

    • Description: The name of the team that played away.

    • Data Type: String

  3. FTHG (Full Time Home Goals):

    • Description: The number of goals scored by the home team at the end of the match.

    • Data Type: Integer

  4. FTAG (Full Time Away Goals):

    • Description: The number of goals scored by the away team at the end of the match.

    • Data Type: Integer

  5. 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 FTHG values for each home team.

  6. 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 FTAG values for each away team.

  7. 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 TotalHomeGoals and TotalAwayGoals for each team.