Problem Note 39254: The Scorecard node returns a "No matching IF-THEN clause" error
In SAS® Enterprise Miner™, if you specify Yes in the Interactive Grouping node for either the Use Frozen Groupings property or the Import Grouping Data property, then you might get the following error when running the Scorecard node:
ERROR 160-185: No matching IF-THEN clause.
The problem occurs because the generated scorecard in the IGN_SPLITVALS data set uses MISSING (all upper case) as the name of the missing-value bin. However, the Scorecard node is expecting the bin to be named Missing (mixed case).
To avoid this issue, change the upper case MISSING to mixed case Missing. You can make this change by adding a SAS Code node to the flow between the Interactive Grouping node and the Scorecard node. Use this code in the Code Editor window of the SAS Code node:
data emws<N>.ign<M>_splitvals;
set emws<N>.ign<M>_splitvals;
if _split_value_="MISSING" then _split_Value_="Missing";
run;
<N> is a value that will be present only if there is more than one EMWS library. <M> is a value that will be present only if the diagram had more than one Interactive Grouping node. You can select the Imported Data property in the SAS Code node to see the EMWS and IGN values that are being read into the SAS Code node.
For a related issue, see SAS Note
39467, "The Scorecard node scoring SAS code might be incorrect if the Interactive Grouping node uses Frozen Groupings or Imported Grouping"
Click the Hot Fix tab in this note to access the hot fix for this issue.
Operating System and Release Information
SAS System | SAS Enterprise Miner | Windows 7 Home Premium 32 bit | 6.1_M2 | | | |
Windows 7 Home Premium x64 | 6.1_M2 | | | |
Windows 7 Enterprise x64 | 6.1_M2 | | | |
Windows 7 Enterprise 32 bit | 6.1_M2 | | | |
Microsoft Windows XP Professional | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
Microsoft Windows Server 2008 | 6.1_M2 | | | |
Microsoft Windows Server 2003 Standard Edition | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
Microsoft Windows Server 2003 Enterprise Edition | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
Microsoft Windows NT Workstation | 6.1_M2 | | | |
Microsoft Windows 2000 Professional | 6.1_M2 | | | |
Microsoft Windows 2000 Server | 6.1_M2 | | | |
Microsoft Windows 2000 Datacenter Server | 6.1_M2 | | | |
Microsoft Windows 2000 Advanced Server | 6.1_M2 | | | |
Microsoft Windows 95/98 | 6.1_M2 | | | |
Microsoft® Windows® for x64 | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
Microsoft Windows XP 64-bit Edition | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
Microsoft Windows Server 2003 Enterprise 64-bit Edition | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
Microsoft Windows Server 2003 Datacenter 64-bit Edition | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
Microsoft® Windows® for 64-Bit Itanium-based Systems | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
Microsoft Windows Server 2003 Datacenter Edition | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
z/OS | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
Windows 7 Professional 32 bit | 6.1_M2 | | | |
Windows 7 Professional x64 | 6.1_M2 | | | |
Windows 7 Ultimate 32 bit | 6.1_M2 | | | |
Windows 7 Ultimate x64 | 6.1_M2 | | | |
Windows Millennium Edition (Me) | 6.1_M2 | | | |
Windows Vista | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
64-bit Enabled AIX | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
64-bit Enabled HP-UX | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
64-bit Enabled Solaris | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
HP-UX IPF | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
Linux | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
Linux for x64 | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
Solaris for x64 | 6.1_M2 | 6.2 | | 9.2 TS2M0 |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Type: | Problem Note |
Priority: | high |
Topic: | Analytics ==> Categorical Data Analysis Analytics ==> Data Mining Analytics ==> Descriptive Statistics Analytics ==> Regression
|
Date Modified: | 2010-06-10 16:33:32 |
Date Created: | 2010-04-02 13:02:10 |