I am working with a script that calls lmer
function of the lme4
package thousands of times (do not worry, relevant correction for multiple comparisons is performed later) and would like to save as much time during a single call as possible.
I want to extract t-values from the fitted model, what is the fastest (computation time) way to do this? I tried using summary(model)
but it seems to take (much) longer than calling lmer
itself. Is it possible to get the t-values from the obtained model without using summary()
?