I have a model:
mixed.lmer.str.df <- lmer(StroopEffort ~ Temperature + RH + sex + (1|Participant) + (1|order), data = df)
And I am using LmerTest. The summary is as follow:
Summary I want to export it to Latex, The problem is that unlike what I can see on different examples, and even when I make all arguments "True", still it is not showing, conditional and adjusted Rsquare, although I can see them when I use Tab_Model.
the code:
mixed.lmer.str.df <- lmer(StroopEffort ~ Temperature + RH + sex +(1|Participant)+ (1|order), data = df)
summary(mixed.lmer.str.df)
tab_model(mixed.lmer.str.df)
texreg(mixed.lmer.str.df,booktabs = TRUE, include.aic = TRUE, include.bic = TRUE, include.dic = TRUE ,include.deviance = TRUE, include.loglik = TRUE,include.nobs = TRUE,include.groups = TRUE,include.variance = TRUE)
Could you please advise what is the problem?