Re: [R] C50 Node Assignment

2013-11-09 Thread Max Kuhn
There is a sub-object called 'rules' that has the output of C5.0 for this model: > library(C50) > mod <- C5.0(Species ~ ., data = iris, rules = TRUE) > cat(mod$rules) id="See5/C5.0 2.07 GPL Edition 2013-11-09" entries="1" rules="4" default="setosa" conds="1" cover="50" ok="50" lift="2.94231" class

Re: [R] C50 Node Assignment

2013-11-09 Thread Carl Witthoft
Just to clarify: I'm guessing the OP is referring to the CRAN package C50 here. A quick skim suggests the rules are a list element of a C5.0-class object, so maybe that's where to start? David Winsemius wrote > In my role as a moderator I am attempting to bypass the automatic mail > filters t

[R] C50 Node Assignment

2013-11-08 Thread David Winsemius
In my role as a moderator I am attempting to bypass the automatic mail filters that are blocking this posting. Please reply to the list and to: = Kevin Shaney C50 Node Assignment I am using C50 to classify individuals into 5 groups / categories (factor variable). The t