A fragmented field

Show code
d-title h1 {
    font-size: 20px;
  }
Show code
knitr::include_graphics("figures/treemap_overall.png")
Treemap showing fragmentation across subfields. Normalized Shannon entropy $\eta(X) = 0.71$ <br>Click image to open interactive plot.

Figure 1: Treemap showing fragmentation across subfields. Normalized Shannon entropy \(\eta(X) = 0.71\)
Click image to open interactive plot.

This online supplement accompanies our preprint. The main figures for the preprint are generated here.

The plots you see here on this page are called treemap plots. In such plots, the area per test is proportional to its usage frequency. The images here are static. If you click them, you can view an interactive plot (give it some time to load) that will allow you to see how often each measure has been used according to APA PsycInfo, and look up the measure in APA PsycTests.

By comparing across the subdisciplines, we can see what higher and lower entropy fields look like visually. High entropy is seen as great fragmentation, i.e. there are many small tiles and many tiles of similar size. Lower fragmentation is apparent when some large tiles reflecting individual measures, such as the Beck Depression Inventory, dominate a field.

Show code
tests <- psyctests_info %>% 
  filter(subdiscipline_1 == "Personality and Social Psychology") %>% 
  group_by(DOI, shortName, Name) %>% 
  summarise(n = sum(usage_count, na.rm = T),
            parent = "")
norm_entropy = calc_norm_entropy(tests$n)

Personality and Social Psychology

Show code
knitr::include_graphics("figures/treemap_personality.png")
Treemap showing fragmentation across personality and social psychology. Click image to open interactive plot.

Figure 2: Treemap showing fragmentation across personality and social psychology. Click image to open interactive plot.

Show code
tests <- psyctests_info %>%
  filter(subdiscipline_1 == "Industrial/Organizational Psychology") %>%
  group_by(DOI, shortName, Name) %>%
  summarise(n = sum(usage_count, na.rm = T),
            parent = "")

norm_entropy = calc_norm_entropy(tests$n)

Industrial/Organizational Psychology

Normalized Shannon entropy \(\eta(X) = 0.80\)

Show code
knitr::include_graphics("figures/treemap_io.png")
Treemap showing fragmentation across industrial/organizational psychology. Click image to open interactive plot.

Figure 3: Treemap showing fragmentation across industrial/organizational psychology. Click image to open interactive plot.

Show code
tests <- psyctests_info %>%
  filter(subdiscipline_1 == "Health and Clinical Psychology") %>%
  group_by(DOI, shortName, Name) %>%
  summarise(n = sum(usage_count, na.rm = T),
            parent = "")

norm_entropy = calc_norm_entropy(tests$n)

Health and Clinical Psychology

Normalized Shannon entropy \(\eta(X) = 0.66\)

Show code
knitr::include_graphics("figures/treemap_clinical.png")
Treemap showing fragmentation across Health and Clinical Psychology. Click image to open interactive plot.

Figure 4: Treemap showing fragmentation across Health and Clinical Psychology. Click image to open interactive plot.

Show code
tests <- psyctests_info %>%
  filter(subdiscipline_1 == "Educational and Developmental Psychology") %>%
  group_by(DOI, shortName, Name) %>%
  summarise(n = sum(usage_count, na.rm = T),
            parent = "")

norm_entropy = calc_norm_entropy(tests$n)

Educational and Developmental Psychology

Normalized Shannon entropy \(\eta(X) = 0.72\)

Show code
knitr::include_graphics("figures/treemap_educational.png")
Treemap showing fragmentation across Educational and Developmental Psychology. Click image to open interactive plot.

Figure 5: Treemap showing fragmentation across Educational and Developmental Psychology. Click image to open interactive plot.

Show code
tests <- psyctests_info %>%
  filter(subdiscipline_1 == "Cognitive Psychology") %>%
  group_by(DOI, shortName, Name) %>%
  summarise(n = sum(usage_count, na.rm = T),
            parent = "")

norm_entropy = calc_norm_entropy(tests$n)

Cognitive Psychology

Show code
knitr::include_graphics("figures/treemap_cognitive.png")
Treemap showing fragmentation across Cognitive Psychology Click image to open interactive plot.

Figure 6: Treemap showing fragmentation across Cognitive Psychology Click image to open interactive plot.