Uses of Class
com.imsl.datamining.PredictiveModel
Packages that use PredictiveModel
Package
Description
Data mining and machine learning.
Decision trees.
Support vector machines.
-
Uses of PredictiveModel in com.imsl.datamining
Subclasses of PredictiveModel in com.imsl.dataminingModifier and TypeClassDescriptionclassPerforms stochastic gradient boosting for a single response variable and multiple predictor variables.classPerforms binomial or multinomial logistic regression.Methods in com.imsl.datamining that return PredictiveModelModifier and TypeMethodDescriptionabstract PredictiveModelPredictiveModel.clone()Abstract clone method.Methods in com.imsl.datamining with parameters of type PredictiveModelModifier and TypeMethodDescriptionprotected abstract voidPredictiveModel.setConfiguration(PredictiveModel pm) Sets the configuration ofPredictiveModelto that of the input model.Constructors in com.imsl.datamining with parameters of type PredictiveModelModifierConstructorDescriptionConstructs aBootstrapAggregationclass in order to generate predictions of aPredictiveModelusing bootstrap aggregation.Creates aCrossValidationobject.Constructs aGradientBoostingobject.protectedConstructs aPredictiveModelfrom an existing instance. -
Uses of PredictiveModel in com.imsl.datamining.decisionTree
Subclasses of PredictiveModel in com.imsl.datamining.decisionTreeModifier and TypeClassDescriptionclassGenerates a decision tree using the CARTTM method of Breiman, Friedman, Olshen and Stone (1984).classGenerates a decision tree using the C4.5 algorithm for a categorical response variable and categorical or quantitative predictor variables.classGenerates a decision tree using CHAID for categorical or discrete ordered predictor variables.classAbstract class for generating a decision tree for a single response variable and one or more predictor variables.classAbstract class that extendsDecisionTreefor classes that use an information gain criteria.classGenerates a decision tree using the QUEST algorithm for a categorical response variable and categorical or quantitative predictor variables.classGenerates predictions using a random forest of decision trees.Methods in com.imsl.datamining.decisionTree with parameters of type PredictiveModelModifier and TypeMethodDescriptionprotected final voidALACART.setConfiguration(PredictiveModel pm) protected final voidCHAID.setConfiguration(PredictiveModel pm) Sets the configuration ofPredictiveModelto that of the input model.protected voidDecisionTree.setConfiguration(PredictiveModel pm) Sets the configuration ofPredictiveModelto that of the input model.protected final voidQUEST.setConfiguration(PredictiveModel pm) Sets the configuration ofPredictiveModelto that of the input model.protected voidRandomTrees.setConfiguration(PredictiveModel pm) Sets the configuration ofRandomTreesto that of the input model. -
Uses of PredictiveModel in com.imsl.datamining.supportvectormachine
Subclasses of PredictiveModel in com.imsl.datamining.supportvectormachineModifier and TypeClassDescriptionclassAbstract class for generating a support vector machine.classSpecifies a support vector machine for classification (SVC).classSpecifies a support vector machine for the one class problem.classSpecifies a support vector machine for regression (SVR).Methods in com.imsl.datamining.supportvectormachine with parameters of type PredictiveModelModifier and TypeMethodDescriptionprotected voidSupportVectorMachine.setConfiguration(PredictiveModel pm) Sets the configuration ofPredictiveModelto that of the input model.protected final voidSVClassification.setConfiguration(PredictiveModel pm) Sets the configuration to that of the inputPredictiveModel.protected final voidSVRegression.setConfiguration(PredictiveModel pm) Sets the configuration to that of the inputPredictiveModel.