The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here

How to use C4.5 in RapidMiner??

mohammad7941mohammad7941 Member Posts: 1 Learner I
Hello my frieands. I have database of some sick people blood test and i want to know which factor is most effective. i think i should use C4.5 algorithm.
and idk how to use it in RapidMiner.
can you help me??

Answers

  • JessForbesRMJessForbesRM RapidMiner Certified Analyst, RapidMiner Certified Expert, Member Posts: 38 RM Data Scientist
    Hello,

    Correct me if I'm wrong - C4.5 is a decision tree algorithm.

    While we don't have any operator that specializes in it I have found that there is an iteration of this called J48, its an open source option that can be found in WEKA.  Our WEKA extension does have an operator for this called W-J48.

    From the operator description - 
    Class for generating a pruned or unpruned C4.5 decision tree. For more information, see Ross Quinlan (1993). C4.5: Programs for Machine Learning. Morgan Kaufmann Publishers, San Mateo, CA.

  • sgenzersgenzer Administrator, Moderator, Employee-RapidMiner, RapidMiner Certified Analyst, Community Manager, Member, University Professor, PM Moderator Posts: 2,959 Community Manager
    @JessForbesRM is 100% correct on this. FWIW the decision tree algorithm that is native to RapidMiner is not C4.5 but is a close variant of it.

    This operator learns decision trees from both nominal and numerical data. Decision trees are powerful classification methods which often can also easily be understood. This decision tree learner works similar to Quinlan's C4.5 or CART.

    You can see the code here.

    Scott

Sign In or Register to comment.