Who is through with convergence warnings? Publications that used allFit to compare optimisers
Mixed-effects models with the random-effects structure that the design justifies (Barr et al., 2013) often end their fit with a warning from lme4 that the optimiser may not have converged. The warning reports that the gradient at the solution exceeded a tolerance, which does not by itself mean that the fit is wrong. The lme4 check produces false positives, as the help page on convergence explains, especially with large data sets and many random effects. A model that has struggled to find enough information to estimate every variance and correlation has other tell-tales, such as correlations of exactly 1 or variances of exactly 0 (Bates et al., 2015; Matuschek et al., 2017), and the usual advice is to look at those before simplifying the model (Brauer & Curtin, 2018; Singmann & Kellen, 2019).
The most direct check is to refit the model with every optimiser that lme4 can call, through allFit(), and to compare the fixed-effect estimates across the fits. If the optimisers agree to the precision that matters for the conclusions, the warning can be reported and set aside, whereas a disagreement between them points to a problem that no change of optimiser will solve. I wrote about the practice and published a plotting function for the comparison some years ago, and since then I have been asked several times, by co-authors and by reviewers, whether other published studies have proceeded in the same way. This post keeps a list of the ones that can be found by searching, so that the next person asked can point to it.
Where a function name can be found
A function name is a poor search term for bibliographic databases, because it appears in the methods section of an article and almost never in its title, abstract or keywords. Three sources with different coverage are therefore searched, by a script in the website’s repository that a GitHub Actions workflow runs on request.
Scopus, searched through the scopusflow package, indexes titles, abstracts, keywords, references and a few other fields, but not the body of the article, so a search for the function name in any indexed field finds only articles that mention it in one of those. A second Scopus query, drafted for the first version of this post in 2023, is a proxy: it looks for abstracts that mention lme4, lmerTest or brms alongside maximal random slopes and convergence, on the grounds that an abstract discussing convergence at that level of detail is likely to belong to a study that dealt with it. Europe PMC indexes the full text of a large body of life-science articles, most of them open access but not all, and its search interface accepts a full-text query. OpenAlex offers a full-text search over the articles for which it holds the text. Both full-text queries pair the function name with a mixed-model term, which removes some unrelated uses of the string without removing all of them.
library(scopusflow) # reads the key from SCOPUS_API_KEY
scopus_any_field <- scopus_fetch('ALL("allFit")')
scopus_proxy <- scopus_fetch(
paste('("lme4" OR "lmerTest" OR "brms") AND maximal AND "random slopes"',
'AND (convergence OR converge OR converged OR converging)'),
field = 'TITLE-ABS-KEY')The two full-text queries are shown as the workflow recorded them, so that what appears here is what actually ran.
cat(readLines('searches/europepmc_query.txt'), sep = '\n')"allFit" AND (lme4 OR "mixed-effects" OR "mixed effects" OR "mixed model" OR "mixed models" OR "multilevel")cat(readLines('searches/openalex_filter.txt'), sep = '\n')fulltext.search:allFit AND (lme4 OR lmer OR "mixed effects" OR "mixed-effects" OR "mixed model" OR "mixed models" OR multilevel)The list
The workflow commits its results to this post’s directory, and the tables below are built from those files, so the record can be refreshed without editing the post.
library(dplyr)
library(ggplot2)
read_if_present <- function(file, source) {
path <- file.path('searches', file)
if (!file.exists(path)) return(NULL)
x <- read.csv(path, stringsAsFactors = FALSE)
x$source <- source
x
}
retrieved <- readLines('searches/retrieved.txt')
scopus_any <- read_if_present('scopus_allfit_any_field.csv', 'Scopus, any indexed field')
scopus_proxy <- read_if_present('scopus_convergence_proxy.csv', 'Scopus, convergence proxy')
europepmc <- read_if_present('europepmc_allfit_fulltext.csv', 'Europe PMC, full text')
openalex <- read_if_present('openalex_allfit_fulltext.csv', 'OpenAlex, full text')
standardise <- function(x) {
if (is.null(x)) return(NULL)
tibble(source = x$source,
doi = tolower(sub('^https?://doi.org/', '', x$doi)),
year = as.integer(x$year),
authors = x$authors,
title = x$title,
venue = if ('journal' %in% names(x)) x$journal else x$publication)
}
records <- bind_rows(lapply(list(scopus_any, scopus_proxy, europepmc, openalex),
standardise))
records |> count(source, name = 'records')#> # A tibble: 4 × 2
#> source records
#> <chr> <int>
#> 1 Europe PMC, full text 30
#> 2 OpenAlex, full text 68
#> 3 Scopus, any indexed field 176
#> 4 Scopus, convergence proxy 1# Do any of the Scopus any-field titles mention a mixed model at all?
mixed_terms <- 'mixed|lme4|multilevel|random effect|convergence|optimi[sz]'
sum(grepl(mixed_terms, scopus_any$title, ignore.case = TRUE))#> [1] 0head(sort(table(scopus_any$publication), decreasing = TRUE), 4)#>
#> European Journal of Pharmacology Journal of Medicinal Chemistry
#> 8 7
#> Neuropharmacology Psychopharmacology
#> 7 7The three sources were queried on 2 September 2026. The Scopus search for the function name in any indexed field illustrates why a bare string is a poor query: it returned 176 records, the largest group of them in pharmacology and medicinal chemistry, and not one of their titles mentions a mixed model. Scopus appears to match the string loosely against unrelated text, so those records are left out of the list below. The proxy query returned 1 record, which shows how rarely an abstract describes the treatment of convergence at that level of detail. The two full-text sources are the ones that come closest to answering the question, since they reach the methods section, where the function name is actually written. Their results are merged on the DOI and screened once, by dropping any record published before the function reached lme4, since a match in such an article is something other than a use of it.
# allFit reached lme4 in version 1.1-7, released in July 2014, so a record
# published before then cannot be a use of it, whatever matched the string.
allfit_year <- 2014L
used_allfit <- records |>
filter(source %in% c('Europe PMC, full text', 'OpenAlex, full text')) |>
mutate(key = ifelse(is.na(doi) | doi == '', paste(source, title), doi)) |>
group_by(key) |>
summarise(year = first(na.omit(year)), authors = first(authors),
title = first(title), venue = first(na.omit(venue)),
doi = first(doi), sources = paste(sort(unique(source)), collapse = '; '),
.groups = 'drop') |>
arrange(desc(year), authors)
too_early <- used_allfit |> filter(!is.na(year), year < allfit_year)
used_allfit <- used_allfit |> filter(is.na(year) | year >= allfit_year)
c(matched = nrow(used_allfit) + nrow(too_early),
before_allfit_existed = nrow(too_early), kept = nrow(used_allfit))#> matched before_allfit_existed kept
#> 82 6 76table(used_allfit$sources)#>
#> Europe PMC, full text Europe PMC, full text; OpenAlex, full text
#> 13 16
#> OpenAlex, full text
#> 47used_allfit |>
filter(!is.na(year)) |>
count(year) |>
ggplot(aes(year, n)) +
geom_col(fill = '#0072B2') +
scale_x_continuous(breaks = scales::breaks_pretty(8)) +
labs(x = NULL, y = 'Publications mentioning allFit') +
theme_minimal(base_size = 13)
The table lists the publications kept by the full-text searches, most recent first, with the sources in which each was found. Authors are given as the sources returned them. The two sources overlap in a minority of records, which says as much about their coverage as about the literature.
short_authors <- function(a) {
a <- ifelse(is.na(a), '', a)
first <- sub('[;,].*$', '', a)
ifelse(grepl('[;,]', a), paste(first, 'et al.'), first)
}
used_allfit |>
transmute(Year = year,
Authors = short_authors(authors),
Title = title,
Venue = venue,
DOI = ifelse(is.na(doi) | doi == '', '',
sprintf('[%s](https://doi.org/%s)', doi, doi)),
Sources = sources) |>
knitr::kable()| Year | Authors | Title | Venue | DOI | Sources |
|---|---|---|---|---|---|
| 2026 | Amalia Arvaniti et al. | Individual and Language Differences in Rhythm Grouping Preferences: The Iambic–Trochaic Law Revisited | Cambridge University Press eBooks | 10.1017/9781009295888.038 | OpenAlex, full text |
| 2026 | Anna Ly et al. | Fitting Generalized Linear Mixed-Effects Models using lme4 | arXiv (Cornell University) | OpenAlex, full text | |
| 2026 | Evelyn Milburn et al. | Native speakers kick buckets, but learners kick doors: A comparison of native and nonnative idiom comprehension | Memory & Cognition | 10.3758/s13421-025-01843-5 | OpenAlex, full text |
| 2026 | Guček NK et al. | Patient- and provider-level determinants of self-assessed health and well-being among adults with chronic conditions in Slovenian primary care. | Health Qual Life Outcomes | 10.1186/s12955-026-02538-4 | Europe PMC, full text |
| 2026 | Katriina Koivusalo | Tutti kasvojen mimiikan manipuloinnin välineenä: Tutin vaikutus kasvojen mimiikkaan ja emootioiden tunnistamiseen | Tampere University Institutional Repository (Tampere University) | OpenAlex, full text | |
| 2026 | Kauppi JJ et al. | Socioeconomic status influenced dispersal in early adulthood in Finland from 1760 to 1969. | iScience | 10.1016/j.isci.2026.115467 | Europe PMC, full text |
| 2026 | Manivasagam S et al. | Social learning of emotion and its implication for memory: an ERP study. | Sci Rep | 10.1038/s41598-026-42906-0 | Europe PMC, full text; OpenAlex, full text |
| 2026 | Milton Ali et al. | Intraspecific drought tolerance in Ugandan Coffea canephora for accelerated breeding selection | PLoS ONE | 10.1371/journal.pone.0349873 | OpenAlex, full text |
| 2026 | Renjaän D et al. | Emotion coupling across socialization contexts in adolescence: Differences in parent-child and peer interactions. | Dev Psychol | 10.1037/dev0001865 | Europe PMC, full text; OpenAlex, full text |
| 2026 | Sofie Decock et al. | Comprehensibility of gender-fair language among foreign language learners of German: an experimental study | Frontiers in Language Sciences | 10.3389/flang.2026.1806497 | OpenAlex, full text |
| 2026 | Taylor Pursell et al. | H5N1 influenza binding and cell entry via human class II MHC, and blocking by cross-reactive antibodies | bioRxiv (Cold Spring Harbor Laboratory) | 10.64898/2026.07.22.739677 | OpenAlex, full text |
| 2026 | Effects of Shared Word Order on Intrasentential Language Mixing in English-Dutch, Polish-Dutch, and Turkish-Dutch Bilingual Children | Behav Sci (Basel) | Europe PMC, full text | ||
| 2025 | Abboju Niranjan et al. | COVID-19 multilevel severity classification using FHGSO enabled DKN EfficientNet | International Journal of Advanced Mechatronic Systems | 10.1504/ijamechs.2025.10069510 | OpenAlex, full text |
| 2025 | Deyatima Ghosh et al. | First Evidence of Diverse Inhibitory Control Abilities in Pre‐ and Post‐Metamorphic Salamanders | Integrative Zoology | 10.1111/1749-4877.70030 | OpenAlex, full text |
| 2025 | Fong PY et al. | A double-blind replication attempt of offline 5Hz-rTUS-induced corticospinal excitability. | Imaging Neurosci (Camb) | 10.1162/imag.a.1046 | Europe PMC, full text; OpenAlex, full text |
| 2025 | G. Venkata Rami Reddy et al. | COVID-19 multilevel severity classification using FHGSO enabled DKN EfficientNet | International Journal of Advanced Mechatronic Systems | 10.1504/ijamechs.2025.144590 | OpenAlex, full text |
| 2025 | Kamizela AE et al. | Timing and trajectory of BCR::ABL1-driven chronic myeloid leukaemia. | Nature | 10.1038/s41586-025-08817-2 | Europe PMC, full text |
| 2025 | Mazzini S et al. | Autistic individuals benefit from gestures during degraded speech comprehension. | Autism | 10.1177/13623613241286570 | Europe PMC, full text; OpenAlex, full text |
| 2025 | Parés-Pujolràs E et al. | Perceptual glimpses are locally accumulated and globally maintained at distinct processing levels | NA | 10.1101/2025.04.30.651428 | Europe PMC, full text |
| 2025 | Paula Orzechowska et al. | The Role of Phonological Factors in the Processing of Polish Phonotactics | Language and Speech | 10.1177/00238309251327671 | OpenAlex, full text |
| 2025 | Peter Stiling et al. | Prospects for the long‐term persistence of a severely endangered plant, Consolea corallicola (Cactaceae) | Conservation Science and Practice | 10.1111/csp2.70031 | OpenAlex, full text |
| 2025 | Tsaprouni E et al. | The Role of Aspect During Deverbal Word Processing in Greek. | J Psycholinguist Res | 10.1007/s10936-024-10112-6 | Europe PMC, full text; OpenAlex, full text |
| 2025 | Vargas TG et al. | Testing Moderators for Associations of Neighborhood Adversity With Psychopathology and Cognitive Outcomes. | Dev Sci | 10.1111/desc.70055 | Europe PMC, full text; OpenAlex, full text |
| 2025 | Zhang P et al. | Priming Adjuncts in Sentence and Discourse Production in Neurotypical Adults and Persons With Aphasia. | J Speech Lang Hear Res | 10.1044/2025_jslhr-24-00870 | Europe PMC, full text |
| 2025 | Zubizarreta-Arruti U et al. | Associations between air pollution and surrounding greenness with internalizing and externalizing behaviors among schoolchildren. | Child Adolesc Ment Health | 10.1111/camh.12772 | Europe PMC, full text |
| 2024 | Chelsea Andreozzi et al. | Influence of microclimate and forest management on bat species faced with global change | Conservation Biology | 10.1111/cobi.14246 | OpenAlex, full text |
| 2024 | Coffey JR et al. | It’s All in the Interaction: Early Acquired Words Are Both Frequent and Highly Imageable. | Open Mind (Camb) | 10.1162/opmi_a_00130 | Europe PMC, full text; OpenAlex, full text |
| 2024 | Colosimo G et al. | Hand grab or noose pole? Evaluating the least stressful practice for capture of endangered Turks and Caicos Rock Iguanas Cyclura carinata. | PeerJ | 10.7717/peerj.17171 | Europe PMC, full text; OpenAlex, full text |
| 2024 | Eszter Tóth-Fáber et al. | Longitudinal evidence for decreasing statistical learning abilities across childhood | NA | 10.31234/osf.io/gj3hq | OpenAlex, full text |
| 2024 | Joseph Coffey et al. | It’s all in the interaction: early acquired words are both frequent and highly imageable | NA | 10.31234/osf.io/3mfcu | OpenAlex, full text |
| 2024 | Kurinchi Selvan Gurusamy | EQUALSTATS: Algorithm Driven Statistical Analysis for Researchers without Coding Skills | NA | 10.32614/cran.package.equalstats | OpenAlex, full text |
| 2024 | Laura Sperl et al. | Context Matters: How Experimental Language and Language Environment Affect Mental Representations in Multilingualism | Languages | 10.3390/languages9030106 | OpenAlex, full text |
| 2024 | Marlijn ter Bekke et al. | Hand Gestures Have Predictive Potential During Conversation: An Investigation of the Timing of Gestures in Relation to Speech | Cognitive Science | 10.1111/cogs.13407 | OpenAlex, full text |
| 2024 | Qingfeng Xu et al. | Evaluation of forest ecosystem resilience to drought considering lagged effects of drought | Ecology and Evolution | 10.1002/ece3.70281 | OpenAlex, full text |
| 2024 | Rachael W. Cheung et al. | Better early than late: the temporal dynamics of pointing cues during cross-situational word learning | Language and Cognition | 10.1017/langcog.2024.39 | OpenAlex, full text |
| 2024 | Sophie H. Smith et al. | Mating preferences act independently on different elements of visual signals in Heliconius butterflies | Behavioral Ecology | 10.1093/beheco/arae056 | OpenAlex, full text |
| 2024 | Tan JL et al. | The species, density, and intra-plant distribution of mites on red raspberry (Rubus idaeus L.). | Exp Appl Acarol | 10.1007/s10493-024-00930-7 | Europe PMC, full text |
| 2024 | Ter Bekke M et al. | Gestures speed up responses to questions. | Lang Cogn Neurosci | 10.1080/23273798.2024.2314021 | Europe PMC, full text; OpenAlex, full text |
| 2024 | Ulrich R et al. | Mental association of time and valence. | Mem Cognit | 10.3758/s13421-023-01473-9 | Europe PMC, full text; OpenAlex, full text |
| 2024 | Yasamin Motamedi et al. | Language development beyond the here-and-now: Iconicity and displacement in child-directed communication | Child Development | 10.1111/cdev.14099 | OpenAlex, full text |
| 2023 | Carrie A.R. Reyden et al. | Impacts of seeding density on the oxidative stress response of the Greenshell™ mussel, Perna canaliculus | Aquaculture International | 10.1007/s10499-023-01078-8 | OpenAlex, full text |
| 2023 | Di Biase L et al. | Ellenberg Indicator Values Disclose Complex Environmental Filtering Processes in Plant Communities along an Elevational Gradient. | Biology (Basel) | 10.3390/biology12020161 | Europe PMC, full text; OpenAlex, full text |
| 2023 | Frederik Van Daele et al. | Habitat fragmentation affects climate adaptation in a forest herb | Journal of Ecology | 10.1111/1365-2745.14225 | OpenAlex, full text |
| 2023 | Frederik Van Daele et al. | Habitat fragmentation affects climate adaptation in a forest herb | Lirias | 10.48550/arxiv.2303.15712 | OpenAlex, full text |
| 2023 | Jeon HS. | Exploring Variability in Compound Tensification in Seoul Korean. | Lang Speech | 10.1177/00238309221095479 | Europe PMC, full text |
| 2023 | Maximin Lange et al. | Could We Prescribe Jobs? Recommendation Accuracy of Job Recommender Systems Using Machine Learning: A Systematic Review and Meta-Analysis | SSRN Electronic Journal | 10.2139/ssrn.4499701 | OpenAlex, full text |
| 2023 | Melanie Wyld et al. | Life Years Lost in Children with Kidney Failure: A Binational Cohort Study with Multistate Probabilities of Death and Life Expectancy | Journal of the American Society of Nephrology | 10.1681/asn.0000000000000118 | OpenAlex, full text |
| 2023 | Moniek H. M. Hutschemaekers et al. | Social avoidance and testosterone enhanced exposure efficacy in women with social anxiety disorder: A pilot investigation | Psychoneuroendocrinology | 10.1016/j.psyneuen.2023.106372 | OpenAlex, full text |
| 2023 | Noor Seijdel et al. | Environmental noise affects audiovisual gain during speech comprehension in adverse listening conditions | NA | 10.31219/osf.io/wbv9r | OpenAlex, full text |
| 2023 | Sporrer JK et al. | Functional sophistication in human escape. | iScience | 10.1016/j.isci.2023.108240 | Europe PMC, full text |
| 2023 | Washington PN et al. | The contributions of proficiency and semantics to the bilingual sentence superiority effect. | Biling (Camb Engl) | 10.1017/s1366728922000748 | Europe PMC, full text; OpenAlex, full text |
| 2023 | Wehrli JM et al. | Effect of the Matrix Metalloproteinase Inhibitor Doxycycline on Human Trace Fear Memory. | eNeuro | 10.1523/eneuro.0243-22.2023 | Europe PMC, full text; OpenAlex, full text |
| 2023 | Yaoyao Lin et al. | An Enhanced Hunger Games Search Optimization with Application to Constrained Engineering Optimization Problems | Biomimetics | 10.3390/biomimetics8050441 | OpenAlex, full text |
| 2023 | Zhang Z et al. | Scalar Implicature is Sensitive to Contextual Alternatives. | Cogn Sci | 10.1111/cogs.13238 | Europe PMC, full text; OpenAlex, full text |
| 2022 | Chapin Czarnecki et al. | Reduced avian predation on an ultraviolet-fluorescing caterpillar model | The Canadian Entomologist | 10.4039/tce.2021.57 | OpenAlex, full text |
| 2022 | Hernán Anlló et al. | Effects of false statements on visual perception hinge on social suggestibility. | Journal of Experimental Psychology Human Perception & Performance | 10.1037/xhp0001024 | OpenAlex, full text |
| 2022 | Iago Giné-Vázquez | trouBBlme4SolveR: Troubles Solver for ‘lme4’ | NA | 10.32614/cran.package.troubblme4solver | OpenAlex, full text |
| 2022 | Murphy JI et al. | Accessible analysis of longitudinal data with linear mixed effects models. | Dis Model Mech | 10.1242/dmm.048025 | Europe PMC, full text |
| 2022 | Yasamin Motamedi et al. | Language development beyond the here-and-now: iconicity and displacement in child-directed communication | NA | 10.31234/osf.io/8rdmj | OpenAlex, full text |
| 2021 | Brown-Schmidt S et al. | The limited role of hippocampal declarative memory in transient semantic activation during online language processing. | Neuropsychologia | 10.1016/j.neuropsychologia.2020.107730 | Europe PMC, full text |
| 2021 | Douglas Roland et al. | The processing of pronominal relative clauses: Evidence from eye movements | Journal of Memory and Language | 10.1016/j.jml.2021.104244 | OpenAlex, full text |
| 2021 | Hernán Anlló et al. | Social steerability modulates perceptual biases | bioRxiv (Cold Spring Harbor Laboratory) | 10.1101/2021.04.28.441710 | OpenAlex, full text |
| 2021 | Jeffrey Martin Lees | Implicit attitudes matter for social judgments of others’ preference, but do not make those judgments more or less accurate | NA | 10.31234/osf.io/sh3xz | OpenAlex, full text |
| 2021 | Josje Verhagen et al. | Determinants of early lexical acquisition: Effects of word- and child-level factors on Dutch children’s acquisition of words | Journal of Child Language | 10.1017/s0305000921000635 | OpenAlex, full text |
| 2021 | Maseroli E et al. | Testosterone treatment is associated with reduced adipose tissue dysfunction and nonalcoholic fatty liver disease in obese hypogonadal men. | J Endocrinol Invest | 10.1007/s40618-020-01381-8 | Europe PMC, full text; OpenAlex, full text |
| 2021 | Sophie Jane Tudge et al. | The impacts of biofuel crops on local biodiversity: a global synthesis | Biodiversity and Conservation | 10.1007/s10531-021-02232-5 | OpenAlex, full text |
| 2020 | Adam Striegel | Control of Volunteer Corn in Enlist Corn and Economics of Herbicide Programs for Weed Control in Conventional and Multiple Herbicide-Resistant Soybean Across Nebraska | Lincoln (University of Nebraska) | OpenAlex, full text | |
| 2020 | Jessica I. Murphy et al. | Accessible Analysis of Longitudinal Data with Linear Mixed Effects Models | bioRxiv (Cold Spring Harbor Laboratory) | 10.1101/2020.12.03.411058 | OpenAlex, full text |
| 2020 | Ramya Walsan | Comorbidity of serious mental illness and type 2 diabetes: do neighbourhoods matter? | Research Online (University of Wollongong) | OpenAlex, full text | |
| 2020 | Sophie Jane Tudge et al. | The impacts of biofuel crops on local biodiversity: a global synthesis | bioRxiv (Cold Spring Harbor Laboratory) | 10.1101/2020.12.21.422503 | OpenAlex, full text |
| 2020 | Zimmerman J et al. | #foodie: Implications of interacting with social media for memory. | Cogn Res Princ Implic | 10.1186/s41235-020-00216-7 | Europe PMC, full text; OpenAlex, full text |
| 2019 | Rachel Ryskin et al. | Information Integration in Modulation of Pragmatic Inferences During Online Language Comprehension | Cognitive Science | 10.1111/cogs.12769 | OpenAlex, full text |
| 2019 | Roswell M et al. | Male and female bees show large differences in floral preference. | PLoS One | 10.1371/journal.pone.0214909 | Europe PMC, full text |
| 2018 | Benjamin M. Bolker et al. | broom.mixed: Tidying Methods for Mixed Models | NA | 10.32614/cran.package.broom.mixed | OpenAlex, full text |
| 2018 | Peter A. Cott et al. | Can traditional methods of selecting food accurately assess fish health? | Arctic Science | 10.1139/as-2017-0052 | OpenAlex, full text |
| 2017 | Jamal K. Mansour et al. | Are multiple-trial experiments appropriate for eyewitness identification studies? Accuracy, choosing, and confidence across trials | Behavior Research Methods | 10.3758/s13428-017-0855-0 | OpenAlex, full text |
The proxy query is shown for completeness. Its single hit is an erratum notice that carries the original article’s abstract, which is a fair indication of how rarely an abstract describes the treatment of convergence in this much detail. A wider proxy would be a reasonable place to look for further precedents, since studies that compared optimisers rarely name the function in a field that Scopus indexes.
records |>
filter(source == 'Scopus, convergence proxy') |>
transmute(Year = year, Authors = short_authors(authors), Title = title, Venue = venue,
DOI = ifelse(is.na(doi) | doi == '', '',
sprintf('[%s](https://doi.org/%s)', doi, doi))) |>
knitr::kable()| Year | Authors | Title | Venue | DOI |
|---|---|---|---|---|
| 2019 | Kiss K. | Erratum: Quantifier spreading: Children misled by ostensive cues (Glossa: A Journal of General Linguistics (2017) 2:1 (38) DOI: 10.5334/gjgl.147) | Glossa | 10.5334/gjgl.902 |
What the list misses
The count is a lower bound. Europe PMC holds full text mostly for open-access articles, and mostly in journals within its scope, so a study behind a paywall in a linguistics or psychology journal is usually invisible to it unless a preprint or an accepted manuscript was deposited. OpenAlex holds text for a subset of the literature that it does not fully document. Scopus cannot see the methods section at all, and a full-text match can be an article that uses the function in a context other than a convergence check, or that mentions it in a footnote. A study that compared optimisers with its own loop, or with the optimx package directly, is not found by any of the three, and neither is a study that reported the comparison only in supplementary material. Records published before the function existed have been dropped, but the table has not otherwise been screened by hand, so it lists the publications whose full text matches the name rather than the publications that are known to have used it. The list is therefore a starting point for the reader who needs a precedent, and it can be refreshed by dispatching the workflow again.
References
Barr, D. J., Levy, R., Scheepers, C., & Tily, H. J. (2013). Random effects structure for confirmatory hypothesis testing: Keep it maximal. Journal of Memory and Language, 68(3), 255–278. https://doi.org/10.1016/j.jml.2012.11.001
Bates, D., Kliegl, R., Vasishth, S., & Baayen, H. (2015). Parsimonious mixed models. arXiv. https://doi.org/10.48550/arXiv.1506.04967
Bates, D., Mächler, M., Bolker, B., & Walker, S. (2015). Fitting linear mixed-effects models using lme4. Journal of Statistical Software, 67(1), 1–48. https://doi.org/10.18637/jss.v067.i01
Brauer, M., & Curtin, J. J. (2018). Linear mixed-effects models and the analysis of nonindependent data: A unified framework to analyze categorical and continuous independent variables that vary within-subjects and/or within-items. Psychological Methods, 23(3), 389–411. https://doi.org/10.1037/met0000159
Matuschek, H., Kliegl, R., Vasishth, S., Baayen, H., & Bates, D. (2017). Balancing Type I error and power in linear mixed models. Journal of Memory and Language, 94, 305–315. https://doi.org/10.1016/j.jml.2017.01.001
Singmann, H., & Kellen, D. (2019). An introduction to mixed models for experimental psychology. In D. H. Spieler & E. Schumacher (Eds.), New methods in cognitive psychology (pp. 4–31). Routledge. https://doi.org/10.4324/9780429318405-2
Comments are provided by Disqus and are not loaded automatically. Loading them connects your browser to Disqus, which may use cookies and process data under its privacy policy. See this site's privacy notice for details.