R/print.activeset.R

Defines functions print.activeset

Documented in print.activeset

print.activeset <- function(x, ...)
{
  cat("\nCall:\n")
  print(x$call)
  cat("\nLoss value:", x$fval, "\n")
  cat("\nActive set fit:\n")
  res.table <- t(data.frame(round(x$y, 3), round(x$x,3)))
  rownames(res.table) <- c("Observed Values", "Fitted Values")
  colnames(res.table) <- 1:length(x$x)
  print(t(res.table))
  cat("\n")
  invisible(x)
}

Try the isotone package in your browser

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

isotone documentation built on March 7, 2023, 6:58 p.m.