Subitization is the rapid, accurate enumeration of low-numerosity displays, distinguished from
counting by a sharp non-linearity in the plot of response times. Below is a representative plot, from Watson, D. G., Maylor, E. A., & Bruce, L. A. M. (2007). Notice that mean enumeration times for displays 1-3 increases roughly linearly, but mean enumeration time for 4 does not follow the linear trend. Some research suggests that the subitization 'limit' is dependent on task conditions and participant working memory.
I'm looking for a way to test where the elbow is, with the ultimate goal of identifying what a participant's subitization limit is. Currently, my best idea is to do something like repeated polynomial contrasts. Basically, I would test for a quadratic trend in numerosities 1-3, then in numerosities 1-4, etc. I would want to say that I have passed the subitization limit when the quadratic trend becomes significant (adjusting for repeated tests).
That's about the limits of my statistical savvy, though, so I can't evaluate this idea too well. Thoughts?
Thanks in advance.
Best Answer
Depending on your definition of the "elbow" there are many statistical tests at your disposal. With an entire R package dedicated to this topic.
I personally tend to avoid them, since you never know in advance what will they consider an "elbow" and whether your and their opinions will coincide. (but this might be considered an extreme position) It would also depend whether you want to know if there is an "elbow" in a specific location, or whether you want to ask if there is one in general.
For the case of a specific location, you can of course fit a local regression, compare the coefficients and declare one an elbow according to your own rule about the difference in slopes.
The real problem occurs in the latter case. If you have only a couple of points anyway you can just try them all. Otherwise I would fit something non-parametric such as LOESS, calculate the gradient of the line at regular intervals (with sufficient density), such as shown here: https://stackoverflow.com/questions/12183137/calculate-min-max-slope-of-loess-fitted-curve-with-r
and use again some rule that you find convenient to declare something an "elbow". I view the "elbow" as the case when a large enough change of gradient of a function occurs over a short enough interval. Of course the thresholds for the above rules are a matter of individual taste, which is why there is no test.
In general, I presume this would be quite useless if the data is wiggly (as there would be a lot of changes in the gradient).
Similar Posts:
- Solved – the mathematical definition of the ‘Elbow Method’
- Solved – the mathematical definition of the ‘Elbow Method’
- Solved – Elbow Test using AIC/BIC for identifying number of clusters using GMM
- Solved – Elbow Test using AIC/BIC for identifying number of clusters using GMM
- Solved – the elbow point in this plot and how to compute it