Skip to content

Commit

Permalink
support zeroinfl
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Oct 22, 2020
1 parent c5732bf commit 15859e4
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ Collate:
'report.lme4.R'
'report.numeric.R'
'report.sessionInfo.R'
'report.zeroinfl.R'
'report_effectsize.R'
'report_info.R'
'report_intecept.R'
Expand Down
10 changes: 10 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ S3method(report,lmerMod)
S3method(report,logical)
S3method(report,numeric)
S3method(report,sessionInfo)
S3method(report,zeroinfl)
S3method(report_effectsize,MixMod)
S3method(report_effectsize,anova)
S3method(report_effectsize,aov)
Expand All @@ -47,6 +48,7 @@ S3method(report_effectsize,glmmTMB)
S3method(report_effectsize,htest)
S3method(report_effectsize,lm)
S3method(report_effectsize,lmerMod)
S3method(report_effectsize,zeroinfl)
S3method(report_info,MixMod)
S3method(report_info,anova)
S3method(report_info,aov)
Expand All @@ -57,12 +59,14 @@ S3method(report_info,glmmTMB)
S3method(report_info,htest)
S3method(report_info,lm)
S3method(report_info,lmerMod)
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,zeroinfl)
S3method(report_model,MixMod)
S3method(report_model,anova)
S3method(report_model,aov)
Expand All @@ -73,6 +77,7 @@ S3method(report_model,glmmTMB)
S3method(report_model,htest)
S3method(report_model,lm)
S3method(report_model,lmerMod)
S3method(report_model,zeroinfl)
S3method(report_parameters,MixMod)
S3method(report_parameters,anova)
S3method(report_parameters,aov)
Expand All @@ -90,12 +95,14 @@ S3method(report_parameters,lmerMod)
S3method(report_parameters,logical)
S3method(report_parameters,numeric)
S3method(report_parameters,sessionInfo)
S3method(report_parameters,zeroinfl)
S3method(report_performance,MixMod)
S3method(report_performance,default)
S3method(report_performance,glm)
S3method(report_performance,glmmTMB)
S3method(report_performance,lm)
S3method(report_performance,lmerMod)
S3method(report_performance,zeroinfl)
S3method(report_random,MixMod)
S3method(report_random,default)
S3method(report_random,glmmTMB)
Expand All @@ -115,6 +122,7 @@ S3method(report_statistics,htest)
S3method(report_statistics,lm)
S3method(report_statistics,lmerMod)
S3method(report_statistics,numeric)
S3method(report_statistics,zeroinfl)
S3method(report_table,MixMod)
S3method(report_table,anova)
S3method(report_table,aov)
Expand All @@ -134,6 +142,7 @@ S3method(report_table,lmerMod)
S3method(report_table,logical)
S3method(report_table,numeric)
S3method(report_table,sessionInfo)
S3method(report_table,zeroinfl)
S3method(report_text,MixMod)
S3method(report_text,anova)
S3method(report_text,aov)
Expand All @@ -153,6 +162,7 @@ S3method(report_text,lmerMod)
S3method(report_text,logical)
S3method(report_text,numeric)
S3method(report_text,sessionInfo)
S3method(report_text,zeroinfl)
S3method(summary,report_effectsize)
S3method(summary,report_info)
S3method(summary,report_intercept)
Expand Down
30 changes: 30 additions & 0 deletions R/report.zeroinfl.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#' @include report.lm.R
#' @export
report.zeroinfl <- report.lm

#' @export
report_effectsize.zeroinfl <- report_effectsize.lm

#' @export
report_table.zeroinfl <- report_table.lm

#' @export
report_statistics.zeroinfl <- report_statistics.lm

#' @export
report_parameters.zeroinfl <- report_parameters.lm

#' @export
report_intercept.zeroinfl <- report_intercept.lm

#' @export
report_model.zeroinfl <- report_model.lm

#' @export
report_performance.zeroinfl <- report_performance.lm

#' @export
report_info.zeroinfl <- report_info.lm

#' @export
report_text.zeroinfl <- report_text.lm

0 comments on commit 15859e4

Please sign in to comment.