R/print.elo.R

Defines functions print.elo

Documented in print.elo

#' prints its argument
#'
#' prints its argument
#'
#' @param x result from \code{\link{elo.seq}}
#' @param ... further arguments passed to or from other methods
#'
#' @export
#'
#' @author Christof Neumann
#'
#' @examples
#' data(adv)
#' SEQ <- elo.seq(winner=adv$winner, loser=adv$loser, Date=adv$Date)
#' print(SEQ)

print.elo <- function(x, ...){

  cat("\nElo ratings from", x$misc["nID"], "individuals\n")
}

Try the EloRating package in your browser

Any scripts or data that you put into this service are public.

EloRating documentation built on March 26, 2020, 7:29 p.m.