Does anyone know how a figure like below is constructed? Possibly using seaborn heatmap or a matplotlib tool?
I have the relevant data in a pandas dataframe; home goals & away goals for each match for the past 5 years for various football leagues, I'm just not sure how a figure like this would be constructed?
The data I have is in the following form;
FTHG FTAG
2 0
3 1
2 2
1 2
FTHG = Full Time Home Goals FTAG = Full Time Away Goals

