I am working with 4 machines that test products and record a value during each test. I have ~ 1000 records from each, and some recorded values look like: -0.67, 0.3, 5.7, 2.3, -0.78, 5.2, 5.8, 9, 2.1, 3.2, -0.34. I want to determine if there is a specific machine that is calibrated differently, i.e. is recording significantly different values from the others.
For this, I am looking to perform pair-wise t-tests (assumption of Normality holding true) - each time comparing measurements from one machine to those from the others. So basically, Machine 1 vs (Machine 2 + 3 + 4), Machine 2 vs (Machine 1 + 3 + 4), and so on.
Is this a correct way to approach this problem or are there better solutions? Also, would I need to use the Bonferroni correction with these tests?
P.S - I glanced upon a somewhat similar post on the forum but that dint answer all my questions (Mean of one group vs. the rest of the sample). For instance, ANOVA and post-hoc tests would give me pair-wise comparisons and answer questions like Machine 1 is different from Machine 2, Machine 3 with 4, and so on - not exactly the question I seek to answer.