First Last
First Last

Reputation: 79

J48 decision tree

I've been searching the web on how to generate J48 decision trees but so far after almost a couple days I haven't found any result about how to generate a J48 decision without Weka, I mean manually by hand. The reason why I wanna do this is because I need to evaluate my data in an assignment.

I would appreciate any information about the j48 algorithm.

Upvotes: 0

Views: 6735

Answers (2)

S Gaber
S Gaber

Reputation: 1560

you can use weka as well for developing a simple code, what you have to do, download the jar file of weka, and study the API of weka which is provided by weka as well. and develop your own program to use the algorithm and implement it on your data

Upvotes: 0

Lars Kotthoff
Lars Kotthoff

Reputation: 109232

The J48 classifier implements the C4.5 algorithm. You should be able to use either a description of that or, if you need to be exactly like what Weka does, you can step through the code itself.

Upvotes: 1

Related Questions