I have a 2d histogram which is logged and saved into a list of lists as below:
lst:
[[1.0, 1.0, 10], [1.0, 2.0, 28.6], [1.0, 3.0, 26.93], [1.0, 4.0, 26.93],[2.0, 1, 6],[2.0, 2.0, 4],[2.0, 3.0, 67],[2.0, 4, 23],[3.0, 1.0, 12], [3.0, 2.0, 65], [3.0, 3.0, 33], [3.0, 4.0, 53]]
The first and second items refer to x and y, and the third one points to the value of that cell. I would like to plot them as a 2d heatmap. Any idea so I can plot them?