Skip to content

Commit

Permalink
lmerMod <- merMod
Browse files Browse the repository at this point in the history
  • Loading branch information
DominiqueMakowski committed Oct 23, 2020
1 parent fbee37e commit a776e87
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
22 changes: 11 additions & 11 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ S3method(report,glmmTMB)
S3method(report,grouped_df)
S3method(report,htest)
S3method(report,lm)
S3method(report,lmerMod)
S3method(report,logical)
S3method(report,merMod)
S3method(report,numeric)
S3method(report,sessionInfo)
S3method(report,survreg)
Expand All @@ -48,7 +48,7 @@ S3method(report_effectsize,glm)
S3method(report_effectsize,glmmTMB)
S3method(report_effectsize,htest)
S3method(report_effectsize,lm)
S3method(report_effectsize,lmerMod)
S3method(report_effectsize,merMod)
S3method(report_effectsize,survreg)
S3method(report_effectsize,zeroinfl)
S3method(report_info,MixMod)
Expand All @@ -60,15 +60,15 @@ S3method(report_info,glm)
S3method(report_info,glmmTMB)
S3method(report_info,htest)
S3method(report_info,lm)
S3method(report_info,lmerMod)
S3method(report_info,merMod)
S3method(report_info,survreg)
S3method(report_info,zeroinfl)
S3method(report_intercept,MixMod)
S3method(report_intercept,default)
S3method(report_intercept,glm)
S3method(report_intercept,glmmTMB)
S3method(report_intercept,lm)
S3method(report_intercept,lmerMod)
S3method(report_intercept,merMod)
S3method(report_intercept,survreg)
S3method(report_intercept,zeroinfl)
S3method(report_model,MixMod)
Expand All @@ -80,7 +80,7 @@ S3method(report_model,glm)
S3method(report_model,glmmTMB)
S3method(report_model,htest)
S3method(report_model,lm)
S3method(report_model,lmerMod)
S3method(report_model,merMod)
S3method(report_model,survreg)
S3method(report_model,zeroinfl)
S3method(report_parameters,MixMod)
Expand All @@ -96,8 +96,8 @@ S3method(report_parameters,glmmTMB)
S3method(report_parameters,grouped_df)
S3method(report_parameters,htest)
S3method(report_parameters,lm)
S3method(report_parameters,lmerMod)
S3method(report_parameters,logical)
S3method(report_parameters,merMod)
S3method(report_parameters,numeric)
S3method(report_parameters,sessionInfo)
S3method(report_parameters,survreg)
Expand All @@ -107,13 +107,13 @@ S3method(report_performance,default)
S3method(report_performance,glm)
S3method(report_performance,glmmTMB)
S3method(report_performance,lm)
S3method(report_performance,lmerMod)
S3method(report_performance,merMod)
S3method(report_performance,survreg)
S3method(report_performance,zeroinfl)
S3method(report_random,MixMod)
S3method(report_random,default)
S3method(report_random,glmmTMB)
S3method(report_random,lmerMod)
S3method(report_random,merMod)
S3method(report_statistics,MixMod)
S3method(report_statistics,anova)
S3method(report_statistics,aov)
Expand All @@ -127,7 +127,7 @@ S3method(report_statistics,glmmTMB)
S3method(report_statistics,grouped_df)
S3method(report_statistics,htest)
S3method(report_statistics,lm)
S3method(report_statistics,lmerMod)
S3method(report_statistics,merMod)
S3method(report_statistics,numeric)
S3method(report_statistics,survreg)
S3method(report_statistics,zeroinfl)
Expand All @@ -146,8 +146,8 @@ S3method(report_table,glmmTMB)
S3method(report_table,grouped_df)
S3method(report_table,htest)
S3method(report_table,lm)
S3method(report_table,lmerMod)
S3method(report_table,logical)
S3method(report_table,merMod)
S3method(report_table,numeric)
S3method(report_table,sessionInfo)
S3method(report_table,survreg)
Expand All @@ -167,8 +167,8 @@ S3method(report_text,glmmTMB)
S3method(report_text,grouped_df)
S3method(report_text,htest)
S3method(report_text,lm)
S3method(report_text,lmerMod)
S3method(report_text,logical)
S3method(report_text,merMod)
S3method(report_text,numeric)
S3method(report_text,sessionInfo)
S3method(report_text,survreg)
Expand Down
22 changes: 11 additions & 11 deletions R/report.lme4.R
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
#' @include report.lm.R
#' @export
report.lmerMod <- report.lm
report.merMod <- report.lm

#' @export
report_effectsize.lmerMod <- report_effectsize.lm
report_effectsize.merMod <- report_effectsize.lm

#' @export
report_table.lmerMod <- report_table.lm
report_table.merMod <- report_table.lm

#' @export
report_performance.lmerMod <- report_performance.lm
report_performance.merMod <- report_performance.lm

#' @export
report_statistics.lmerMod <- report_statistics.lm
report_statistics.merMod <- report_statistics.lm

#' @export
report_parameters.lmerMod <- report_parameters.lm
report_parameters.merMod <- report_parameters.lm

#' @export
report_intercept.lmerMod <- report_intercept.lm
report_intercept.merMod <- report_intercept.lm

#' @export
report_random.lmerMod <- function(x, ...) {
report_random.merMod <- function(x, ...) {
random_terms <- insight::find_terms(x)$random
if (!is.null(random_terms)) {
text <- format_text(random_terms)
Expand All @@ -35,10 +35,10 @@ report_random.lmerMod <- function(x, ...) {


#' @export
report_model.lmerMod <- report_model.lm
report_model.merMod <- report_model.lm

#' @export
report_info.lmerMod <- report_info.lm
report_info.merMod <- report_info.lm

#' @export
report_text.lmerMod <- report_text.lm
report_text.merMod <- report_text.lm

0 comments on commit a776e87

Please sign in to comment.