deepboost.print: Evaluates and prints statistics for a deepboost model on the...

Description Usage Arguments Value Examples

View source: R/deepboost.R

Description

Evaluates and prints statistics for a deepboost model on the train set

Usage

1

Arguments

object

A Deepboost S4 class object

Value

List with model_statistics to console the model evaluation string

Examples

1
2
3
4
dpb <- deepboost(y ~ .,
 data.frame(x1=rep(c(0,0,1,1),2),x2=rep(c(0,1,0,1),2),y=factor(rep(c(0,0,0,1),2))),
 num_iter=2,tree_depth=2)
deepboost.print(dpb)

deepboost documentation built on May 2, 2019, 8:35 a.m.