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] 0
head(sort(table(scopus_any$publication), decreasing = TRUE), 4)
#> 
#> European Journal of Pharmacology   Journal of Medicinal Chemistry 
#>                                8                                7 
#>                Neuropharmacology               Psychopharmacology 
#>                                7                                7

The 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                    76
table(used_allfit$sources)
#> 
#>                      Europe PMC, full text Europe PMC, full text; OpenAlex, full text 
#>                                         13                                         16 
#>                        OpenAlex, full text 
#>                                         47
used_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)

Bar chart of the number of publications per year, from 2017 to 2026, whose full text mentions allFit, according to Europe PMC and OpenAlex

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()
YearAuthorsTitleVenueDOISources
2026Amalia Arvaniti et al.Individual and Language Differences in Rhythm Grouping Preferences: The Iambic–Trochaic Law RevisitedCambridge University Press eBooks10.1017/9781009295888.038OpenAlex, full text
2026Anna Ly et al.Fitting Generalized Linear Mixed-Effects Models using lme4arXiv (Cornell University)OpenAlex, full text
2026Evelyn Milburn et al.Native speakers kick buckets, but learners kick doors: A comparison of native and nonnative idiom comprehensionMemory & Cognition10.3758/s13421-025-01843-5OpenAlex, full text
2026Guč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 Outcomes10.1186/s12955-026-02538-4Europe PMC, full text
2026Katriina KoivusaloTutti kasvojen mimiikan manipuloinnin välineenä: Tutin vaikutus kasvojen mimiikkaan ja emootioiden tunnistamiseenTampere University Institutional Repository (Tampere University)OpenAlex, full text
2026Kauppi JJ et al.Socioeconomic status influenced dispersal in early adulthood in Finland from 1760 to 1969.iScience10.1016/j.isci.2026.115467Europe PMC, full text
2026Manivasagam S et al.Social learning of emotion and its implication for memory: an ERP study.Sci Rep10.1038/s41598-026-42906-0Europe PMC, full text; OpenAlex, full text
2026Milton Ali et al.Intraspecific drought tolerance in Ugandan Coffea canephora for accelerated breeding selectionPLoS ONE10.1371/journal.pone.0349873OpenAlex, full text
2026Renjaän D et al.Emotion coupling across socialization contexts in adolescence: Differences in parent-child and peer interactions.Dev Psychol10.1037/dev0001865Europe PMC, full text; OpenAlex, full text
2026Sofie Decock et al.Comprehensibility of gender-fair language among foreign language learners of German: an experimental studyFrontiers in Language Sciences10.3389/flang.2026.1806497OpenAlex, full text
2026Taylor Pursell et al.H5N1 influenza binding and cell entry via human class II MHC, and blocking by cross-reactive antibodiesbioRxiv (Cold Spring Harbor Laboratory)10.64898/2026.07.22.739677OpenAlex, full text
2026Effects of Shared Word Order on Intrasentential Language Mixing in English-Dutch, Polish-Dutch, and Turkish-Dutch Bilingual ChildrenBehav Sci (Basel)Europe PMC, full text
2025Abboju Niranjan et al.COVID-19 multilevel severity classification using FHGSO enabled DKN EfficientNetInternational Journal of Advanced Mechatronic Systems10.1504/ijamechs.2025.10069510OpenAlex, full text
2025Deyatima Ghosh et al.First Evidence of Diverse Inhibitory Control Abilities in Pre‐ and Post‐Metamorphic SalamandersIntegrative Zoology10.1111/1749-4877.70030OpenAlex, full text
2025Fong PY et al.A double-blind replication attempt of offline 5Hz-rTUS-induced corticospinal excitability.Imaging Neurosci (Camb)10.1162/imag.a.1046Europe PMC, full text; OpenAlex, full text
2025G. Venkata Rami Reddy et al.COVID-19 multilevel severity classification using FHGSO enabled DKN EfficientNetInternational Journal of Advanced Mechatronic Systems10.1504/ijamechs.2025.144590OpenAlex, full text
2025Kamizela AE et al.Timing and trajectory of BCR::ABL1-driven chronic myeloid leukaemia.Nature10.1038/s41586-025-08817-2Europe PMC, full text
2025Mazzini S et al.Autistic individuals benefit from gestures during degraded speech comprehension.Autism10.1177/13623613241286570Europe PMC, full text; OpenAlex, full text
2025Parés-Pujolràs E et al.Perceptual glimpses are locally accumulated and globally maintained at distinct processing levelsNA10.1101/2025.04.30.651428Europe PMC, full text
2025Paula Orzechowska et al.The Role of Phonological Factors in the Processing of Polish PhonotacticsLanguage and Speech10.1177/00238309251327671OpenAlex, full text
2025Peter Stiling et al.Prospects for the long‐term persistence of a severely endangered plant, Consolea corallicola (Cactaceae)Conservation Science and Practice10.1111/csp2.70031OpenAlex, full text
2025Tsaprouni E et al.The Role of Aspect During Deverbal Word Processing in Greek.J Psycholinguist Res10.1007/s10936-024-10112-6Europe PMC, full text; OpenAlex, full text
2025Vargas TG et al.Testing Moderators for Associations of Neighborhood Adversity With Psychopathology and Cognitive Outcomes.Dev Sci10.1111/desc.70055Europe PMC, full text; OpenAlex, full text
2025Zhang P et al.Priming Adjuncts in Sentence and Discourse Production in Neurotypical Adults and Persons With Aphasia.J Speech Lang Hear Res10.1044/2025_jslhr-24-00870Europe PMC, full text
2025Zubizarreta-Arruti U et al.Associations between air pollution and surrounding greenness with internalizing and externalizing behaviors among schoolchildren.Child Adolesc Ment Health10.1111/camh.12772Europe PMC, full text
2024Chelsea Andreozzi et al.Influence of microclimate and forest management on bat species faced with global changeConservation Biology10.1111/cobi.14246OpenAlex, full text
2024Coffey 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_00130Europe PMC, full text; OpenAlex, full text
2024Colosimo G et al.Hand grab or noose pole? Evaluating the least stressful practice for capture of endangered Turks and Caicos Rock Iguanas Cyclura carinata.PeerJ10.7717/peerj.17171Europe PMC, full text; OpenAlex, full text
2024Eszter Tóth-Fáber et al.Longitudinal evidence for decreasing statistical learning abilities across childhoodNA10.31234/osf.io/gj3hqOpenAlex, full text
2024Joseph Coffey et al.It’s all in the interaction: early acquired words are both frequent and highly imageableNA10.31234/osf.io/3mfcuOpenAlex, full text
2024Kurinchi Selvan GurusamyEQUALSTATS: Algorithm Driven Statistical Analysis for Researchers without Coding SkillsNA10.32614/cran.package.equalstatsOpenAlex, full text
2024Laura Sperl et al.Context Matters: How Experimental Language and Language Environment Affect Mental Representations in MultilingualismLanguages10.3390/languages9030106OpenAlex, full text
2024Marlijn ter Bekke et al.Hand Gestures Have Predictive Potential During Conversation: An Investigation of the Timing of Gestures in Relation to SpeechCognitive Science10.1111/cogs.13407OpenAlex, full text
2024Qingfeng Xu et al.Evaluation of forest ecosystem resilience to drought considering lagged effects of droughtEcology and Evolution10.1002/ece3.70281OpenAlex, full text
2024Rachael W. Cheung et al.Better early than late: the temporal dynamics of pointing cues during cross-situational word learningLanguage and Cognition10.1017/langcog.2024.39OpenAlex, full text
2024Sophie H. Smith et al.Mating preferences act independently on different elements of visual signals in Heliconius butterfliesBehavioral Ecology10.1093/beheco/arae056OpenAlex, full text
2024Tan JL et al.The species, density, and intra-plant distribution of mites on red raspberry (Rubus idaeus L.).Exp Appl Acarol10.1007/s10493-024-00930-7Europe PMC, full text
2024Ter Bekke M et al.Gestures speed up responses to questions.Lang Cogn Neurosci10.1080/23273798.2024.2314021Europe PMC, full text; OpenAlex, full text
2024Ulrich R et al.Mental association of time and valence.Mem Cognit10.3758/s13421-023-01473-9Europe PMC, full text; OpenAlex, full text
2024Yasamin Motamedi et al.Language development beyond the here-and-now: Iconicity and displacement in child-directed communicationChild Development10.1111/cdev.14099OpenAlex, full text
2023Carrie A.R. Reyden et al.Impacts of seeding density on the oxidative stress response of the Greenshell™ mussel, Perna canaliculusAquaculture International10.1007/s10499-023-01078-8OpenAlex, full text
2023Di Biase L et al.Ellenberg Indicator Values Disclose Complex Environmental Filtering Processes in Plant Communities along an Elevational Gradient.Biology (Basel)10.3390/biology12020161Europe PMC, full text; OpenAlex, full text
2023Frederik Van Daele et al.Habitat fragmentation affects climate adaptation in a forest herbJournal of Ecology10.1111/1365-2745.14225OpenAlex, full text
2023Frederik Van Daele et al.Habitat fragmentation affects climate adaptation in a forest herbLirias10.48550/arxiv.2303.15712OpenAlex, full text
2023Jeon HS.Exploring Variability in Compound Tensification in Seoul Korean.Lang Speech10.1177/00238309221095479Europe PMC, full text
2023Maximin Lange et al.Could We Prescribe Jobs? Recommendation Accuracy of Job Recommender Systems Using Machine Learning: A Systematic Review and Meta-AnalysisSSRN Electronic Journal10.2139/ssrn.4499701OpenAlex, full text
2023Melanie Wyld et al.Life Years Lost in Children with Kidney Failure: A Binational Cohort Study with Multistate Probabilities of Death and Life ExpectancyJournal of the American Society of Nephrology10.1681/asn.0000000000000118OpenAlex, full text
2023Moniek H. M. Hutschemaekers et al.Social avoidance and testosterone enhanced exposure efficacy in women with social anxiety disorder: A pilot investigationPsychoneuroendocrinology10.1016/j.psyneuen.2023.106372OpenAlex, full text
2023Noor Seijdel et al.Environmental noise affects audiovisual gain during speech comprehension in adverse listening conditionsNA10.31219/osf.io/wbv9rOpenAlex, full text
2023Sporrer JK et al.Functional sophistication in human escape.iScience10.1016/j.isci.2023.108240Europe PMC, full text
2023Washington PN et al.The contributions of proficiency and semantics to the bilingual sentence superiority effect.Biling (Camb Engl)10.1017/s1366728922000748Europe PMC, full text; OpenAlex, full text
2023Wehrli JM et al.Effect of the Matrix Metalloproteinase Inhibitor Doxycycline on Human Trace Fear Memory.eNeuro10.1523/eneuro.0243-22.2023Europe PMC, full text; OpenAlex, full text
2023Yaoyao Lin et al.An Enhanced Hunger Games Search Optimization with Application to Constrained Engineering Optimization ProblemsBiomimetics10.3390/biomimetics8050441OpenAlex, full text
2023Zhang Z et al.Scalar Implicature is Sensitive to Contextual Alternatives.Cogn Sci10.1111/cogs.13238Europe PMC, full text; OpenAlex, full text
2022Chapin Czarnecki et al.Reduced avian predation on an ultraviolet-fluorescing caterpillar modelThe Canadian Entomologist10.4039/tce.2021.57OpenAlex, full text
2022Hernán Anlló et al.Effects of false statements on visual perception hinge on social suggestibility.Journal of Experimental Psychology Human Perception & Performance10.1037/xhp0001024OpenAlex, full text
2022Iago Giné-VázqueztrouBBlme4SolveR: Troubles Solver for ‘lme4’NA10.32614/cran.package.troubblme4solverOpenAlex, full text
2022Murphy JI et al.Accessible analysis of longitudinal data with linear mixed effects models.Dis Model Mech10.1242/dmm.048025Europe PMC, full text
2022Yasamin Motamedi et al.Language development beyond the here-and-now: iconicity and displacement in child-directed communicationNA10.31234/osf.io/8rdmjOpenAlex, full text
2021Brown-Schmidt S et al.The limited role of hippocampal declarative memory in transient semantic activation during online language processing.Neuropsychologia10.1016/j.neuropsychologia.2020.107730Europe PMC, full text
2021Douglas Roland et al.The processing of pronominal relative clauses: Evidence from eye movementsJournal of Memory and Language10.1016/j.jml.2021.104244OpenAlex, full text
2021Hernán Anlló et al.Social steerability modulates perceptual biasesbioRxiv (Cold Spring Harbor Laboratory)10.1101/2021.04.28.441710OpenAlex, full text
2021Jeffrey Martin LeesImplicit attitudes matter for social judgments of others’ preference, but do not make those judgments more or less accurateNA10.31234/osf.io/sh3xzOpenAlex, full text
2021Josje Verhagen et al.Determinants of early lexical acquisition: Effects of word- and child-level factors on Dutch children’s acquisition of wordsJournal of Child Language10.1017/s0305000921000635OpenAlex, full text
2021Maseroli E et al.Testosterone treatment is associated with reduced adipose tissue dysfunction and nonalcoholic fatty liver disease in obese hypogonadal men.J Endocrinol Invest10.1007/s40618-020-01381-8Europe PMC, full text; OpenAlex, full text
2021Sophie Jane Tudge et al.The impacts of biofuel crops on local biodiversity: a global synthesisBiodiversity and Conservation10.1007/s10531-021-02232-5OpenAlex, full text
2020Adam StriegelControl of Volunteer Corn in Enlist Corn and Economics of Herbicide Programs for Weed Control in Conventional and Multiple Herbicide-Resistant Soybean Across NebraskaLincoln (University of Nebraska)OpenAlex, full text
2020Jessica I. Murphy et al.Accessible Analysis of Longitudinal Data with Linear Mixed Effects ModelsbioRxiv (Cold Spring Harbor Laboratory)10.1101/2020.12.03.411058OpenAlex, full text
2020Ramya WalsanComorbidity of serious mental illness and type 2 diabetes: do neighbourhoods matter?Research Online (University of Wollongong)OpenAlex, full text
2020Sophie Jane Tudge et al.The impacts of biofuel crops on local biodiversity: a global synthesisbioRxiv (Cold Spring Harbor Laboratory)10.1101/2020.12.21.422503OpenAlex, full text
2020Zimmerman J et al.#foodie: Implications of interacting with social media for memory.Cogn Res Princ Implic10.1186/s41235-020-00216-7Europe PMC, full text; OpenAlex, full text
2019Rachel Ryskin et al.Information Integration in Modulation of Pragmatic Inferences During Online Language ComprehensionCognitive Science10.1111/cogs.12769OpenAlex, full text
2019Roswell M et al.Male and female bees show large differences in floral preference.PLoS One10.1371/journal.pone.0214909Europe PMC, full text
2018Benjamin M. Bolker et al.broom.mixed: Tidying Methods for Mixed ModelsNA10.32614/cran.package.broom.mixedOpenAlex, full text
2018Peter A. Cott et al.Can traditional methods of selecting food accurately assess fish health?Arctic Science10.1139/as-2017-0052OpenAlex, full text
2017Jamal K. Mansour et al.Are multiple-trial experiments appropriate for eyewitness identification studies? Accuracy, choosing, and confidence across trialsBehavior Research Methods10.3758/s13428-017-0855-0OpenAlex, 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()
YearAuthorsTitleVenueDOI
2019Kiss K.Erratum: Quantifier spreading: Children misled by ostensive cues (Glossa: A Journal of General Linguistics (2017) 2:1 (38) DOI: 10.5334/gjgl.147)Glossa10.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.