Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
R
 
 
 
 
 
 
 
 
 
 
 
 

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

About

A simple demonstration and implementation of gradient boosting

Topics

Resources

License

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.