Uses of Class
classification.PredictionSet

Packages that use PredictionSet
classification   
ensemble   
 

Uses of PredictionSet in classification
 

Methods in classification that return PredictionSet
 PredictionSet Ensemble.getCombinedPred()
          Retrieves the combined prediction set that represents the ensemble.
 

Methods in classification with parameters of type PredictionSet
 double DataSet.comparePredictionSets(PredictionSet set1, PredictionSet set2, java.lang.String attrName, boolean forData)
          Compares two sets of predictions to determine how similar they are, also giving an indication of which is more accurate.
 double PredictionSet.compareToSet(PredictionSet otherSet, java.lang.String attrName, boolean forData)
          Determines the percentage of predictions in this set that are identical to those in another set.
 double DataSet.judgePredictionSet(PredictionSet pSet, java.lang.String attrName, boolean forData)
          Judges the accuracy of a set of predictions for this data set.
 void Ensemble.setCombinedPred(PredictionSet combinedPred)
          Sets the prediction set that represents the ensemble.
 

Method parameters in classification with type arguments of type PredictionSet
 Ensemble MajorityVoteClassifier.generateEnsemble(java.util.List<PredictionSet> predSetList, DataSet data)
           
 Ensemble MetaClassifier.generateEnsemble(java.util.List<PredictionSet> predSetList, DataSet data)
          Generates an ensemble for the given data using the provided predictions.
 

Constructors in classification with parameters of type PredictionSet
Ensemble(java.util.List<PredictionSet> predSetList, double percentCorrect, int total, MetaClassifier metaClass, PredictionSet combinedPred, DataSet dataSet)
          Creates a new ensemble from a list of prediction sets.
 

Constructor parameters in classification with type arguments of type PredictionSet
Ensemble(java.util.List<PredictionSet> predSetList, double percentCorrect, int total, MetaClassifier metaClass, PredictionSet combinedPred, DataSet dataSet)
          Creates a new ensemble from a list of prediction sets.
 

Uses of PredictionSet in ensemble
 

Methods in ensemble that return types with arguments of type PredictionSet
 java.util.List<PredictionSet> DatabaseBean.getPredSetsFor(DataSet data)
          Retrieves prediction sets for a set of data.