Last data update: 2014.03.03

R: Add more trees to an maboost object
update.maboostR Documentation

Add more trees to an maboost object

Description

maboost.update updates the maboost object to have additional trees given a new number of iterations.

Usage

## S3 method for class 'maboost'
update(object, x, y, test.x, test.y = NULL, n.iter, ...)

Arguments

object

object generated by the function maboost.

x

x training data

y

training response

test.x

x testing data (optional)

test.y

the true labeling for this testing data (optional)

n.iter

new number of iterations, must be provided and n.iter>iter

...

other arguments not used by this function.

Value

updated maboost object.

See Also

maboost,summary.maboost,predict.maboost,

Results