Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bethatkinson/rpart
Recursive Partitioning and Regression Trees
https://github.com/bethatkinson/rpart
cart classification cran r statistics
Last synced: 4 days ago
JSON representation
Recursive Partitioning and Regression Trees
- Host: GitHub
- URL: https://github.com/bethatkinson/rpart
- Owner: bethatkinson
- Created: 2018-06-07T14:01:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-12T14:55:19.000Z (7 months ago)
- Last Synced: 2024-10-30T01:39:48.137Z (4 months ago)
- Topics: cart, classification, cran, r, statistics
- Language: C
- Homepage:
- Size: 305 KB
- Stars: 49
- Watchers: 4
- Forks: 24
- Open Issues: 44
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
Awesome Lists containing this project
README
# The `rpart` package
[![CRAN_STATUS_BADGE](http://www.r-pkg.org/badges/version/rpart)](https://CRAN.R-project.org/package=rpart)
[![Downloads](http://cranlogs.r-pkg.org/badges/rpart)](https://CRAN.R-project.org/package=rpart)This is the source code for the `rpart` package, which is a recommended package in R.
It gets posted to the comprehensive R archive (CRAN) as needed after undergoing a thorough testing.## Overview
The `rpart` code builds classification or regression models of a very
general structure using a two stage procedure; the resulting models can be
represented as binary trees. The package implements many of the ideas found
in the CART (Classification and Regression Trees) book and programs of
Breiman, Friedman, Olshen and Stone. Because CART is the trademarked name
of a particular software implementation of these ideas and `tree` was used
for the Splus routines of Clark and Pregibon, a different acronym -
Recursive PARTitioning or rpart - was chosen.