R/print_penSVM.R

Defines functions `print.penSVM`

`print.penSVM` <-
  function(x,...){
    cat("\nBias = ", x$b)
    cat("\nSelected Variables= ", names(x$w))
    cat("\nCoefficients:\n  ")
    print(x$w)
    cat("\n")
}

Try the penalizedSVM package in your browser

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

penalizedSVM documentation built on March 31, 2023, 7:51 p.m.