public class DecisionTree 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_2}Extension" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_2}Output" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_2}ModelStats" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_2}Targets" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_2}LocalTransformations" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_2}ResultField" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_2}Node"/>
</sequence>
<attribute name="modelName" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="functionName" use="required" type="{http://www.dmg.org/PMML-4_2}MINING-FUNCTION" />
<attribute name="algorithmName" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="missingValueStrategy" type="{http://www.dmg.org/PMML-4_2}MISSING-VALUE-STRATEGY" default="none" />
<attribute name="missingValuePenalty" type="{http://www.dmg.org/PMML-4_2}PROB-NUMBER" default="1.0" />
<attribute name="noTrueChildStrategy" type="{http://www.dmg.org/PMML-4_2}NO-TRUE-CHILD-STRATEGY" default="returnNullPrediction" />
<attribute name="splitCharacteristic" default="multiSplit">
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="binarySplit"/>
<enumeration value="multiSplit"/>
</restriction>
</simpleType>
</attribute>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected String |
algorithmName |
protected List<Extension> |
extensions |
protected MININGFUNCTION |
functionName |
protected LocalTransformations |
localTransformations |
protected BigDecimal |
missingValuePenalty |
protected MISSINGVALUESTRATEGY |
missingValueStrategy |
protected String |
modelName |
protected ModelStats |
modelStats |
protected Node |
node |
protected NOTRUECHILDSTRATEGY |
noTrueChildStrategy |
protected Output |
output |
protected List<ResultField> |
resultFields |
protected String |
splitCharacteristic |
protected Targets |
targets |
| Constructor and Description |
|---|
DecisionTree() |
| Modifier and Type | Method and Description |
|---|---|
String |
getAlgorithmName()
Gets the value of the algorithmName property.
|
List<Extension> |
getExtensions()
Gets the value of the extensions property.
|
MININGFUNCTION |
getFunctionName()
Gets the value of the functionName property.
|
LocalTransformations |
getLocalTransformations()
Gets the value of the localTransformations property.
|
BigDecimal |
getMissingValuePenalty()
Gets the value of the missingValuePenalty property.
|
MISSINGVALUESTRATEGY |
getMissingValueStrategy()
Gets the value of the missingValueStrategy property.
|
String |
getModelName()
Gets the value of the modelName property.
|
ModelStats |
getModelStats()
Gets the value of the modelStats property.
|
Node |
getNode()
Gets the value of the node property.
|
NOTRUECHILDSTRATEGY |
getNoTrueChildStrategy()
Gets the value of the noTrueChildStrategy property.
|
Output |
getOutput()
Gets the value of the output property.
|
List<ResultField> |
getResultFields()
Gets the value of the resultFields property.
|
String |
getSplitCharacteristic()
Gets the value of the splitCharacteristic property.
|
Targets |
getTargets()
Gets the value of the targets property.
|
void |
setAlgorithmName(String value)
Sets the value of the algorithmName property.
|
void |
setFunctionName(MININGFUNCTION value)
Sets the value of the functionName property.
|
void |
setLocalTransformations(LocalTransformations value)
Sets the value of the localTransformations property.
|
void |
setMissingValuePenalty(BigDecimal value)
Sets the value of the missingValuePenalty property.
|
void |
setMissingValueStrategy(MISSINGVALUESTRATEGY value)
Sets the value of the missingValueStrategy property.
|
void |
setModelName(String value)
Sets the value of the modelName property.
|
void |
setModelStats(ModelStats value)
Sets the value of the modelStats property.
|
void |
setNode(Node value)
Sets the value of the node property.
|
void |
setNoTrueChildStrategy(NOTRUECHILDSTRATEGY value)
Sets the value of the noTrueChildStrategy property.
|
void |
setOutput(Output value)
Sets the value of the output property.
|
void |
setSplitCharacteristic(String value)
Sets the value of the splitCharacteristic property.
|
void |
setTargets(Targets value)
Sets the value of the targets property.
|
protected Output output
protected ModelStats modelStats
protected Targets targets
protected LocalTransformations localTransformations
protected List<ResultField> resultFields
protected Node node
protected String modelName
protected MININGFUNCTION functionName
protected String algorithmName
protected MISSINGVALUESTRATEGY missingValueStrategy
protected BigDecimal missingValuePenalty
protected NOTRUECHILDSTRATEGY noTrueChildStrategy
protected String splitCharacteristic
public List<Extension> getExtensions()
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
public Output getOutput()
Outputpublic void setOutput(Output value)
value - allowed object is
Outputpublic ModelStats getModelStats()
ModelStatspublic void setModelStats(ModelStats value)
value - allowed object is
ModelStatspublic Targets getTargets()
Targetspublic void setTargets(Targets value)
value - allowed object is
Targetspublic LocalTransformations getLocalTransformations()
LocalTransformationspublic void setLocalTransformations(LocalTransformations value)
value - allowed object is
LocalTransformationspublic List<ResultField> getResultFields()
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 resultFields property.
For example, to add a new item, do as follows:
getResultFields().add(newItem);
Objects of the following type(s) are allowed in the list
ResultField
public void setNode(Node value)
value - allowed object is
Nodepublic String getModelName()
Stringpublic void setModelName(String value)
value - allowed object is
Stringpublic MININGFUNCTION getFunctionName()
MININGFUNCTIONpublic void setFunctionName(MININGFUNCTION value)
value - allowed object is
MININGFUNCTIONpublic String getAlgorithmName()
Stringpublic void setAlgorithmName(String value)
value - allowed object is
Stringpublic MISSINGVALUESTRATEGY getMissingValueStrategy()
MISSINGVALUESTRATEGYpublic void setMissingValueStrategy(MISSINGVALUESTRATEGY value)
value - allowed object is
MISSINGVALUESTRATEGYpublic BigDecimal getMissingValuePenalty()
BigDecimalpublic void setMissingValuePenalty(BigDecimal value)
value - allowed object is
BigDecimalpublic NOTRUECHILDSTRATEGY getNoTrueChildStrategy()
NOTRUECHILDSTRATEGYpublic void setNoTrueChildStrategy(NOTRUECHILDSTRATEGY value)
value - allowed object is
NOTRUECHILDSTRATEGYpublic String getSplitCharacteristic()
StringCopyright © 2001–2015 JBoss by Red Hat. All rights reserved.