I currently have a 1D array, representing intensity values with the index of the value being its x-position.
intensity_values = [0.10, 0.32, ... , 0.12, 0.23]
I want to create a subplot at the bottom of my figure with an intensity plot, visually showing the data as such.
I've seen examples which require an array with 3-dimension to be able to fufil the data plot. How would I achieve this result?