A simple demonstration and implementation of gradient boosting
R
Switch branches/tags
Nothing to show
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
R
tests
.travis.yml
DESCRIPTION
LICENSE
README.md

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

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])