R/print.sgd.R

Defines functions print.sgd

Documented in print.sgd

#' Print objects of class \code{sgd}.
#'
#' @param x object of class \code{sgd}.
#' @param \dots further arguments passed to or from other methods.
#'
#' @export
print.sgd <- function(x, ...) {
  print(coef(x), ...)
}

Try the sgd package in your browser

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

sgd documentation built on May 29, 2024, 5:31 a.m.