org.dmg.pmml.pmml_4_1.descr
Class RegressionTable

java.lang.Object
  extended by org.dmg.pmml.pmml_4_1.descr.RegressionTable
All Implemented Interfaces:
Serializable

public class RegressionTable
extends Object
implements Serializable

Java class for anonymous complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType>
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/>
         <element ref="{http://www.dmg.org/PMML-4_1}NumericPredictor" maxOccurs="unbounded" minOccurs="0"/>
         <element ref="{http://www.dmg.org/PMML-4_1}CategoricalPredictor" maxOccurs="unbounded" minOccurs="0"/>
         <element ref="{http://www.dmg.org/PMML-4_1}PredictorTerm" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="intercept" use="required" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" />
       <attribute name="targetCategory" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 

See Also:
Serialized Form

Field Summary
protected  List<CategoricalPredictor> categoricalPredictors
           
protected  List<Extension> extensions
           
protected  double intercept
           
protected  List<NumericPredictor> numericPredictors
           
protected  List<PredictorTerm> predictorTerms
           
protected  String targetCategory
           
 
Constructor Summary
RegressionTable()
           
 
Method Summary
 List<CategoricalPredictor> getCategoricalPredictors()
          Gets the value of the categoricalPredictors property.
 List<Extension> getExtensions()
          Gets the value of the extensions property.
 double getIntercept()
          Gets the value of the intercept property.
 List<NumericPredictor> getNumericPredictors()
          Gets the value of the numericPredictors property.
 List<PredictorTerm> getPredictorTerms()
          Gets the value of the predictorTerms property.
 String getTargetCategory()
          Gets the value of the targetCategory property.
 void setIntercept(double value)
          Sets the value of the intercept property.
 void setTargetCategory(String value)
          Sets the value of the targetCategory property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

extensions

protected List<Extension> extensions

numericPredictors

protected List<NumericPredictor> numericPredictors

categoricalPredictors

protected List<CategoricalPredictor> categoricalPredictors

predictorTerms

protected List<PredictorTerm> predictorTerms

intercept

protected double intercept

targetCategory

protected String targetCategory
Constructor Detail

RegressionTable

public RegressionTable()
Method Detail

getExtensions

public List<Extension> getExtensions()
Gets the value of the extensions property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the extensions property.

For example, to add a new item, do as follows:

    getExtensions().add(newItem);
 

Objects of the following type(s) are allowed in the list Extension


getNumericPredictors

public List<NumericPredictor> getNumericPredictors()
Gets the value of the numericPredictors property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the numericPredictors property.

For example, to add a new item, do as follows:

    getNumericPredictors().add(newItem);
 

Objects of the following type(s) are allowed in the list NumericPredictor


getCategoricalPredictors

public List<CategoricalPredictor> getCategoricalPredictors()
Gets the value of the categoricalPredictors property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the categoricalPredictors property.

For example, to add a new item, do as follows:

    getCategoricalPredictors().add(newItem);
 

Objects of the following type(s) are allowed in the list CategoricalPredictor


getPredictorTerms

public List<PredictorTerm> getPredictorTerms()
Gets the value of the predictorTerms property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the predictorTerms property.

For example, to add a new item, do as follows:

    getPredictorTerms().add(newItem);
 

Objects of the following type(s) are allowed in the list PredictorTerm


getIntercept

public double getIntercept()
Gets the value of the intercept property.


setIntercept

public void setIntercept(double value)
Sets the value of the intercept property.


getTargetCategory

public String getTargetCategory()
Gets the value of the targetCategory property.

Returns:
possible object is String

setTargetCategory

public void setTargetCategory(String value)
Sets the value of the targetCategory property.

Parameters:
value - allowed object is String


Copyright © 2001-2012 JBoss by Red Hat. All Rights Reserved.