Skip to content

Commit

Permalink
add ivreg support
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed May 29, 2021
1 parent a6b71e0 commit 31681bf
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 0 deletions.
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ Collate:
'report.factor.R'
'report.glm.R'
'report.glmmTMB.R'
'report.ivreg.R'
'report.lavaan.R'
'report.lme.R'
'report.numeric.R'
Expand Down
10 changes: 10 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ S3method(report,glm)
S3method(report,glmmTMB)
S3method(report,grouped_df)
S3method(report,htest)
S3method(report,ivreg)
S3method(report,lavaan)
S3method(report,lm)
S3method(report,lme)
Expand All @@ -61,6 +62,7 @@ S3method(report_effectsize,default)
S3method(report_effectsize,glm)
S3method(report_effectsize,glmmTMB)
S3method(report_effectsize,htest)
S3method(report_effectsize,ivreg)
S3method(report_effectsize,lm)
S3method(report_effectsize,lme)
S3method(report_effectsize,merMod)
Expand All @@ -76,6 +78,7 @@ S3method(report_info,default)
S3method(report_info,glm)
S3method(report_info,glmmTMB)
S3method(report_info,htest)
S3method(report_info,ivreg)
S3method(report_info,lm)
S3method(report_info,lme)
S3method(report_info,merMod)
Expand All @@ -87,6 +90,7 @@ S3method(report_intercept,brmsfit)
S3method(report_intercept,default)
S3method(report_intercept,glm)
S3method(report_intercept,glmmTMB)
S3method(report_intercept,ivreg)
S3method(report_intercept,lm)
S3method(report_intercept,lme)
S3method(report_intercept,merMod)
Expand All @@ -102,6 +106,7 @@ S3method(report_model,default)
S3method(report_model,glm)
S3method(report_model,glmmTMB)
S3method(report_model,htest)
S3method(report_model,ivreg)
S3method(report_model,lm)
S3method(report_model,lme)
S3method(report_model,merMod)
Expand All @@ -122,6 +127,7 @@ S3method(report_parameters,glm)
S3method(report_parameters,glmmTMB)
S3method(report_parameters,grouped_df)
S3method(report_parameters,htest)
S3method(report_parameters,ivreg)
S3method(report_parameters,lm)
S3method(report_parameters,lme)
S3method(report_parameters,logical)
Expand All @@ -137,6 +143,7 @@ S3method(report_performance,brmsfit)
S3method(report_performance,default)
S3method(report_performance,glm)
S3method(report_performance,glmmTMB)
S3method(report_performance,ivreg)
S3method(report_performance,lavaan)
S3method(report_performance,lm)
S3method(report_performance,lme)
Expand Down Expand Up @@ -168,6 +175,7 @@ S3method(report_statistics,glm)
S3method(report_statistics,glmmTMB)
S3method(report_statistics,grouped_df)
S3method(report_statistics,htest)
S3method(report_statistics,ivreg)
S3method(report_statistics,lm)
S3method(report_statistics,lme)
S3method(report_statistics,merMod)
Expand All @@ -192,6 +200,7 @@ S3method(report_table,glm)
S3method(report_table,glmmTMB)
S3method(report_table,grouped_df)
S3method(report_table,htest)
S3method(report_table,ivreg)
S3method(report_table,lavaan)
S3method(report_table,lm)
S3method(report_table,lme)
Expand Down Expand Up @@ -219,6 +228,7 @@ S3method(report_text,glm)
S3method(report_text,glmmTMB)
S3method(report_text,grouped_df)
S3method(report_text,htest)
S3method(report_text,ivreg)
S3method(report_text,lm)
S3method(report_text,lme)
S3method(report_text,logical)
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# report 0.3.0.9000 (development)

* Added support for models of class `ivreg` (*ivreg*).

# report 0.3.0

* Initial release of the package.
30 changes: 30 additions & 0 deletions R/report.ivreg.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#' @include report.lm.R
#' @export
report.ivreg <- report.lm

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

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

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

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

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

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

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

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

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

0 comments on commit 31681bf

Please sign in to comment.