|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Rule | |
---|---|
net.sf.myra.datamining | |
net.sf.myra.datamining.function.hierarchical | |
net.sf.myra.datamining.model | |
net.sf.myra.datamining.util |
Uses of Rule in net.sf.myra.datamining |
---|
Subclasses of Rule in net.sf.myra.datamining | |
---|---|
class |
ProbabilisticRule
|
class |
ProbabilisticSequentialRule
|
class |
SequentialRule
|
Methods in net.sf.myra.datamining that return Rule | |
---|---|
Rule |
Rule.clone()
|
Methods in net.sf.myra.datamining with parameters of type Rule | |
---|---|
void |
NoClassAssignator.assign(Rule rule,
Dataset dataset)
|
void |
MajorityClassAssignator.assign(Rule rule,
Dataset dataset)
Assigns the rule's class value based on the majority class of the covered examples by the rule. |
void |
FixedClassAssignator.assign(Rule rule,
Dataset dataset)
Assigns the default class value to the rule. |
void |
CoveredClassAssignator.assign(Rule rule,
Dataset dataset)
Assigns all class labels of the covered examples to the rule consequent. |
void |
ClassFrequencyAssignator.assign(Rule rule,
Dataset dataset)
|
void |
ClassAssignator.assign(Rule rule,
Dataset dataset)
Assigns the class value to the specified rule. |
static java.util.List<Instance> |
Evaluator.findCorrectCases(Rule rule,
Dataset dataset)
Returns the correct covered (the instance class value equals to the specified rule consequent) instances by the specified rule. |
static java.util.List<Instance> |
Evaluator.findCoveredCases(Rule rule,
Dataset dataset)
Returns the covered instances by the specified rule. |
static java.util.List<Instance> |
Evaluator.findCoveredCases(Rule rule,
java.util.List<Instance> instances)
Returns the covered instances by the specified rule. |
static java.util.Set<java.lang.Integer> |
Evaluator.findIndexedCoveredCases(Rule rule,
Dataset dataset)
Returns a set of indexes of the covered instances by the specified rule. |
static java.util.Set<java.lang.Integer> |
Evaluator.findIndexedCoveredCases(Rule rule,
java.util.List<Instance> instances)
Returns a set of indexes of the covered instances by the specified rule. |
static java.util.List<Instance> |
Evaluator.findNotCoveredCases(Rule rule,
Dataset dataset)
Returns the not covered instances by the specified rule. |
static java.util.List<Instance> |
Evaluator.findNotCoveredCases(Rule rule,
java.util.List<Instance> instances)
Returns the not covered instances by the specified rule. |
static java.util.List<Instance> |
Evaluator.findPositiveCases(Rule rule,
Dataset dataset)
Returns the positive covered (the instance class value contains the specified rule consequent) instances by the specified rule. |
static DefaultConfidenceFactor |
Evaluator.getConfidenceFactor(Rule rule,
Dataset dataset)
Returns the confidence factor of the specified rule when used to classify the dataset instances. |
static ConfusionMatrix |
Evaluator.getConfusionMatrix(Rule rule,
Dataset dataset)
Returns the confusion matrix of the specified rule when used to classify the dataset instances. |
static ConfusionMatrix |
Evaluator.getConfusionMatrix(Rule rule,
Dataset dataset,
java.lang.String label)
Returns the confusion matrix of the rule when used to classify the dataset instances, predicting the specified class label. |
static ConfusionMatrix |
Evaluator.getConfusionMatrix(Rule rule,
java.util.List<Instance> instances)
Returns the confusion matrix of the specified rule when used to classify the specified instances. |
static ConfusionMatrix |
Evaluator.getConfusionMatrix(Rule rule,
java.util.List<Instance> instances,
java.lang.String label)
Returns the confusion matrix of the rule when used to classify the specified instances, predicting a class label. |
static ConfusionMatrix |
Evaluator.getConfusionMatrix(Rule rule,
java.util.List<Instance> instances,
UsefulnessHelper helper)
Returns the confusion matrix of the specified rule when used to classify the specified instances. |
Uses of Rule in net.sf.myra.datamining.function.hierarchical |
---|
Methods in net.sf.myra.datamining.function.hierarchical with parameters of type Rule | |
---|---|
protected ConfusionMatrix |
LocalFunction.getConfusionMatrix(Rule rule,
java.lang.String label,
java.util.List<Instance> instances)
|
Uses of Rule in net.sf.myra.datamining.model |
---|
Methods in net.sf.myra.datamining.model that return Rule | |
---|---|
Rule |
AbstractRuleModel.getDefault()
Returns the default rule. |
Methods in net.sf.myra.datamining.model that return types with arguments of type Rule | |
---|---|
java.util.Set<Rule> |
RuleSet.getRules()
|
java.util.List<Rule> |
RuleList.getRules()
|
java.util.Set<Rule> |
ProbabilisticRuleSet.getRules()
|
java.util.List<Rule> |
ProbabilisticRuleList.getRules()
|
java.util.Collection<Rule> |
AbstractRuleModel.getRules()
|
Methods in net.sf.myra.datamining.model with parameters of type Rule | |
---|---|
void |
AbstractRuleModel.add(Rule rule)
|
void |
AbstractRuleModel.remove(Rule rule)
|
Method parameters in net.sf.myra.datamining.model with type arguments of type Rule | |
---|---|
protected int |
AbstractRuleModel.DefaultGatherer.countTerms(java.util.Collection<Rule> discovered)
Returns the number of term of the discovered rule set. |
abstract Label |
RuleSet.ConflictResolutionStrategy.resolve(java.util.Collection<Rule> rules)
|
Constructor parameters in net.sf.myra.datamining.model with type arguments of type Rule | |
---|---|
AbstractRuleModel(java.util.Collection<Rule> rules)
Default constructor. |
|
ProbabilisticRuleModel(java.util.Collection<Rule> rules)
Default constructor. |
Uses of Rule in net.sf.myra.datamining.util |
---|
Methods in net.sf.myra.datamining.util that return Rule | |
---|---|
Rule |
RuleParser.Rule.convert(Metadata metadata)
|
Method parameters in net.sf.myra.datamining.util with type arguments of type Rule | |
---|---|
static double |
RuleParser.averageConfidenceSet(Dataset test,
java.util.ArrayList<Rule> rules)
|
static double |
RuleParser.averageFrequencySet(Dataset test,
java.util.ArrayList<Rule> rules)
|
static double |
RuleParser.averageOrderedList(Dataset test,
java.util.ArrayList<Rule> rules)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |