Skip to content

dashaub/DidacticBoost

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A simple demonstration and implementation of gradient boosting

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages