Checking the overall quality

You can check the overall quality of a model or a test result by using the DM_getMdlQuality function.
You can extract information about the quality of a model or a test result for the following value types:

The following example shows how to extract information about the quality of a model:

SELECT  IDMMX.DM_getMdlQuality("MODEL") AS "MODEL_QUALITY"
FROM    IDMMX."CLUSTERMODELS" 
WHERE   MODELNAME='BankCustomerSegments';

The following example shows how to extract information about the quality of a test result:

SELECT  IDMMX.DM_getMdlQuality("RESULT") AS "MODEL_QUALITY"
FROM    IDMMX."REGTESTRESULTS"
WHERE   ID='InsuranceTestResult';


Feedback | Information roadmap