Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Aug 31, 2024
1 parent e76961d commit 0599537
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -912,6 +912,7 @@ S3method(get_statistic,negbinmfx)
S3method(get_statistic,nestedLogit)
S3method(get_statistic,nlrq)
S3method(get_statistic,ols)
S3method(get_statistic,ordinal_weightit)
S3method(get_statistic,orm)
S3method(get_statistic,pgmm)
S3method(get_statistic,plm)
Expand Down
8 changes: 8 additions & 0 deletions R/get_statistic.R
Original file line number Diff line number Diff line change
Expand Up @@ -795,6 +795,14 @@ get_statistic.clm2 <- function(x, component = "all", ...) {
get_statistic.clmm2 <- get_statistic.clm2


#' @export
get_statistic.ordinal_weightit <- function(x, ...) {
out <- get_statistic.default(x, ...)
out$Component <- "conditional"
out
}


#' @export
get_statistic.mvord <- function(x, component = "all", ...) {
component <- match.arg(
Expand Down

0 comments on commit 0599537

Please sign in to comment.