I have the following problem:
I have a 2D-array that looks like this:
#Time in Minutes Temperature in °C:
0 15
2 16
4 16
...
I have about 12,000 datapoints, each ~2 minutes apart. I want to calculate the rate of temperature change. I'm aware of np.diff, but don't see how that can help me, since the changes between each measurement are usually only +/- 1 °C, since my temperature feed only provides integer values.
Hope this makes sense. Thanks in advance, Nico