I have temperature and humidity readings from two different sensors (located in the same geographical area). The data is logged every hour and I have data for more than a year, logged this way 2/1/2019 15:00. Now, I want to validate that the sensors are working correctly and that they should produce similar results for a given time period. Like their hourly readings, in general, shouldn't vary a lot. How do I statistically measure their similarity?
I have tried a two-sample Kolmogorov–Smirnov test from scipy. However, I am not sure if this is the right approach as the result gave a very small value of pvalue=4.082677479167249e-05. Their histogram plots look almost identical (normal distribution). And from inspection, it appeared that the sensors are producing similar results.
stats.ks_2samp(df1.temp,df2.temp)