Package weka.core.pmml.jaxbbindings
Class ClusteringModelQuality
- java.lang.Object
-
- weka.core.pmml.jaxbbindings.ClusteringModelQuality
-
public class ClusteringModelQuality extends java.lang.ObjectJava class for ClusteringModelQuality element declaration.
The following schema fragment specifies the expected content contained within this class.
<element name="ClusteringModelQuality"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="SSB" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> <attribute name="SSE" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> <attribute name="dataName" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType> </element>
-
-
Constructor Summary
Constructors Constructor Description ClusteringModelQuality()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDataName()Gets the value of the dataName property.java.lang.DoublegetSSB()Gets the value of the ssb property.java.lang.DoublegetSSE()Gets the value of the sse property.voidsetDataName(java.lang.String value)Sets the value of the dataName property.voidsetSSB(java.lang.Double value)Sets the value of the ssb property.voidsetSSE(java.lang.Double value)Sets the value of the sse property.
-
-
-
Method Detail
-
getSSB
public java.lang.Double getSSB()
Gets the value of the ssb property.- Returns:
- possible object is
Double
-
setSSB
public void setSSB(java.lang.Double value)
Sets the value of the ssb property.- Parameters:
value- allowed object isDouble
-
getSSE
public java.lang.Double getSSE()
Gets the value of the sse property.- Returns:
- possible object is
Double
-
setSSE
public void setSSE(java.lang.Double value)
Sets the value of the sse property.- Parameters:
value- allowed object isDouble
-
getDataName
public java.lang.String getDataName()
Gets the value of the dataName property.- Returns:
- possible object is
String
-
setDataName
public void setDataName(java.lang.String value)
Sets the value of the dataName property.- Parameters:
value- allowed object isString
-
-