simpledt
Version:
Decision Tree
58 lines (35 loc) • 898 B
Markdown
# SimpleDT
Decision Tree algorithm implementation, for Node.js and browser.
## Installation
Via npm on Node:
```
npm install simpledt
```
## Usage
Reference in your program:
```js
var sg = require('simpledt');
```
TBD
## Development
```
git clone git://github.com/ajlopez/SimpleDT.git
cd SimpleDT
npm install
npm test
```
## References
- C 4.5 Programs for Machine Learning, J Ross Quinlan (Internal Reference: Lib)
## Samples
TBD
## Versions
- 0.0.1 Published
- 0.0.1 Manage numeric values
## License
MIT
## Contribution
Feel free to [file issues](https://github.com/ajlopez/SimpleDT) and submit
[pull requests](https://github.com/ajlopez/SimpleDT/pulls) � contributions are
welcome<
If you submit a pull request, please be sure to add or update corresponding
test cases, and ensure that `npm test` continues to pass.