<xs:element name="PredictiveModelQuality">
<xs:complexType>
<xs:sequence>
<xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="ConfusionMatrix" minOccurs="0"/>
<xs:element ref="LiftData" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="ROC" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="targetField" type="xs:string" use="required"/>
<xs:attribute name="dataName" type="xs:string" use="optional"/>
<xs:attribute name="dataUsage" default="training">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="training"/>
<xs:enumeration value="test"/>
<xs:enumeration value="validation"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="meanError" type="NUMBER" use="optional"/>
<xs:attribute name="meanAbsoluteError" type="NUMBER" use="optional"/>
<xs:attribute name="meanSquaredError" type="NUMBER" use="optional"/>
<xs:attribute name="rootMeanSquaredError" type="NUMBER" use="optional"/>
<xs:attribute name="r-squared" type="NUMBER" use="optional"/>
<xs:attribute name="adj-r-squared" type="NUMBER" use="optional"/>
<xs:attribute name="sumSquaredError" type="NUMBER" use="optional"/>
<xs:attribute name="sumSquaredRegression" type="NUMBER" use="optional"/>
<xs:attribute name="numOfRecords" type="NUMBER" use="optional"/>
<xs:attribute name="numOfRecordsWeighted" type="NUMBER" use="optional"/>
<xs:attribute name="numOfPredictors" type="NUMBER" use="optional"/>
<xs:attribute name="degreesOfFreedom" type="NUMBER" use="optional"/>
<xs:attribute name="fStatistic" type="NUMBER" use="optional"/>
<xs:attribute name="AIC" type="NUMBER" use="optional"/>
<xs:attribute name="BIC" type="NUMBER" use="optional"/>
<xs:attribute name="AICc" type="NUMBER" use="optional"/>
</xs:complexType>
</xs:element> |