June 2017
Beginner
330 pages
7h 30m
English
This is a simple introduction to setting up a decision tree in Ruby. We'll start off with a simple setup. In this section, we're going to build a medical analysis tool. In order to follow along, make sure that you've installed the decisiontree Ruby gem. If you don't have it on your system, you can install it by running:
gem install decisiontree
To start building a decision tree, let's create a basic application. Begin by pulling in the required gem libraries:
require 'rubygems'require 'decisiontree'
Read now
Unlock full access