R/print.spFSR.R

Defines functions print.spFSR

print.spFSR <- function(x, ...){
  cat("\nCall:\n")
  print(x$call)

  cat('\nImportance:\n')
  importance <- getImportance(x)
  print( importance )
  cat('\nBest Iteration Results:\n')
  cat( paste('  Iteration Number: ', x$best.iter), '\n')
  cat( paste('  Measure value: ', x$best.value), '\n')
  cat( paste('  Measure standard deviation: ', x$best.std), '\n')

}

Try the spFSR package in your browser

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

spFSR documentation built on March 31, 2023, 9:05 p.m.