You may find this data set in the `openintro` R package or on this page.
Over the last decade technology has become heavily integrated in our everyday lives. That integration has been made easier as technology has improved; computers are faster and more efficient than ever. One way speed is measured is the frequency of the cpu. Most - but not all - cpu's have a base clock and a boost clock. The base clock is the speed the processor runs at idle or for less demanding tasks like word processing. The boost clock is a higher frequency that the processor can run at for more intense tasks like video editing and gaming. In fact, many gamers will "overclock" their cpu to reach a speed higher than the boost clock! A technical question we can ask ourselves is why are processors getting faster? What specifically is causing the increase in speed?
Another feature of many modern cpu's is multithreading. In less technical terms, multithreading allows the computer to do multiple tasks at the same time. Intel refers to this as Hyper-threading and AMD refers to it as Simultaneous Multithreading or SMT. The proportion of new cpu's with multithreading is higher than the proportion released without multithreading ten years ago!
Since processors have gotten faster over time and multithreading has become more common, maybe that is the cause. We can look at side-by-side boxplots to get a rough idea.
Visually, there does not appear to be much of a difference for the base clock, but there the five-number-summary for the boost clock is consistently higher for multithreaded processors. We can run two-sample t-tests to confirm. As expected, there is not a statistically significant difference for the base clock.
For the boost clock, there is!
This is a great example of the difference between statistical significance and practical significance. We can say that yes, there is a statistical difference in the boost clock of processors with and without multithreading. However, the 95% confidence interval shows that this difference is between 0.2 and 0.4 GHz. To the average computer user this difference will not be noticeable, i.e. it is not a practical difference.
It would seem we've closed the case. However, one reason I like to use this data set is the presence of a lurking variable! One way most technology gets faster and more efficient is by becoming smaller. In general, the physical size of a cpu hasn't changed a lot in the last ten years. What has changed is the process node - the semiconductor manufacturing process. In general a smaller process node produces smaller transistors. If transistors are smaller then more of them can fit onto the same size cpu. Smaller transistors are faster and more efficient! The chart below shows that over time, the size of the process node has been decreasing and the boost clock has increased in conjunction with it regardless of multithreading!