File: refit.R

package info (click to toggle)
r-cran-generics 0.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 636 kB
  • sloc: sh: 13; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 272 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#' Refitting models
#'
#' @param object A fitted model object.
#' @param ... Other arguments passed to methods
#'
#' @section Methods:
#' \Sexpr[stage=render,results=rd]{generics:::methods_rd("refit")}
#'
#' @export
refit <- function(object, ...) {
  UseMethod("refit")
}