I have some data that I'd like to represent as a spectrogram or heat-map in python 2.7. At the moment, I have an array of three columns (time, channel number and flux), and thousands of rows that represent each data point. How would I be able to plot all the data points if I want time on the x axis, channel number on the y axis, and the magnitude of the flux represented by a colour?
I've looked through a fair few questions on here, plus other resources online, and haven't been able to apply any of the answers to my own situation. Ideally I'd want something like this, just with frequency replaced by channel and also using my own data rather than generating something.