Skip to content

Commit

Permalink
add survreg support
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Oct 22, 2020
1 parent 6f1d463 commit fbee37e
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.survreg.R'
'report.zeroinfl.R'
'report_effectsize.R'
'report_info.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,survreg)
S3method(report,zeroinfl)
S3method(report_effectsize,MixMod)
S3method(report_effectsize,anova)
Expand All @@ -48,6 +49,7 @@ S3method(report_effectsize,glmmTMB)
S3method(report_effectsize,htest)
S3method(report_effectsize,lm)
S3method(report_effectsize,lmerMod)
S3method(report_effectsize,survreg)
S3method(report_effectsize,zeroinfl)
S3method(report_info,MixMod)
S3method(report_info,anova)
Expand All @@ -59,13 +61,15 @@ S3method(report_info,glmmTMB)
S3method(report_info,htest)
S3method(report_info,lm)
S3method(report_info,lmerMod)
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,survreg)
S3method(report_intercept,zeroinfl)
S3method(report_model,MixMod)
S3method(report_model,anova)
Expand All @@ -77,6 +81,7 @@ S3method(report_model,glmmTMB)
S3method(report_model,htest)
S3method(report_model,lm)
S3method(report_model,lmerMod)
S3method(report_model,survreg)
S3method(report_model,zeroinfl)
S3method(report_parameters,MixMod)
S3method(report_parameters,anova)
Expand All @@ -95,13 +100,15 @@ S3method(report_parameters,lmerMod)
S3method(report_parameters,logical)
S3method(report_parameters,numeric)
S3method(report_parameters,sessionInfo)
S3method(report_parameters,survreg)
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,survreg)
S3method(report_performance,zeroinfl)
S3method(report_random,MixMod)
S3method(report_random,default)
Expand All @@ -122,6 +129,7 @@ S3method(report_statistics,htest)
S3method(report_statistics,lm)
S3method(report_statistics,lmerMod)
S3method(report_statistics,numeric)
S3method(report_statistics,survreg)
S3method(report_statistics,zeroinfl)
S3method(report_table,MixMod)
S3method(report_table,anova)
Expand All @@ -142,6 +150,7 @@ S3method(report_table,lmerMod)
S3method(report_table,logical)
S3method(report_table,numeric)
S3method(report_table,sessionInfo)
S3method(report_table,survreg)
S3method(report_table,zeroinfl)
S3method(report_text,MixMod)
S3method(report_text,anova)
Expand All @@ -162,6 +171,7 @@ S3method(report_text,lmerMod)
S3method(report_text,logical)
S3method(report_text,numeric)
S3method(report_text,sessionInfo)
S3method(report_text,survreg)
S3method(report_text,zeroinfl)
S3method(summary,report_effectsize)
S3method(summary,report_info)
Expand Down
30 changes: 30 additions & 0 deletions R/report.survreg.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#' @include report.lm.R
#' @export
report.survreg <- report.lm

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

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

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

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

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

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

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

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

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

0 comments on commit fbee37e

Please sign in to comment.