Skip to content

Commit

Permalink
clean up ordinal augment stub
Browse files Browse the repository at this point in the history
  • Loading branch information
bbolker committed Apr 9, 2024
1 parent b1ec497 commit 690b742
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions R/ordinal_tidiers.R
Expand Up @@ -27,12 +27,15 @@ predict.all.clmm <- function(object, newdata, ...) {
#' \code{ordinal} package) lives in the \code{broom} package.
#'
#' @importFrom tibble tibble
#' @importFrom stats model.frame
#' @export
augment.clmm <- function(...,
data = stats::model.frame(x), newdata, ...) {

if (!missing(newdata)) data <- newdata
augment.clmm <- function( x,
data = model.frame(x),
...) {

if (!missing(newdata)) data <- newdata

## STUB
}

if (FALSE) {
Expand Down

0 comments on commit 690b742

Please sign in to comment.