README.md

Travis-CI Build Status Coverage Status CRAN version

DidacticBoost

A simple demonstration and implementation of gradient boosting

Installation

The stable release of the package is hosted on CRAN and can be installed as usual:

install.packages("DidacticBoost")

Usage

```r library(DidacticBoost) k <- kyphosis k$Kyphosis <- factor(ifelse(k$Kyphosis == "present", 1L, -1L)) fit <- fitBoosted(Kyphosis ~ Age + Number + Start, data = k, iterations = 10) predict(fit, newdata = k[, 1:5]) ````



dashaub/DidacticBoost documentation built on May 14, 2019, 6:11 p.m.