Hello everyone;
I m running into a problem with the MBA node: Run time error 1008. I'm trying to do association with 2 level taxonomy.
my data head are as follow
for the main data items row 1384617
for the hierarchy I have 49822 Row and 3 columns -- I have 2 level. See attachment.
*------------------------------------------------------------*
User:
Date: February 14, 2018
Time: 21:46:12 o'clock
Site: 70112404
Platform: X64_10HOME
Maintenance Release: 9.04.01M4P110916
EM Version: 14.2
*
MPRINT(EM_DIAGRAM): data _null_;
MPRINT(EM_DIAGRAM): call symput('NLDATE', strip(put(date(), NLDATE.)));
MPRINT(EM_DIAGRAM): call symput('NLTIME', strip(put(datetime(), NLTIME.)));
MPRINT(EM_DIAGRAM): run;
MPRINT(EM_DIAGRAM): data _null_;
MPRINT(EM_DIAGRAM): nldate= sasmsg("sashelp.dmine", "log_date_note", 'N', "February 14, 2018" );
MPRINT(EM_DIAGRAM): nltime= sasmsg("sashelp.dmine", "log_time_note", 'N', "21:46:10 o'clock" );
MPRINT(EM_DIAGRAM): put "*------------------------------------------------------------*";
MPRINT(EM_DIAGRAM): put "* Training Log";
MPRINT(EM_DIAGRAM): put nldate;
MPRINT(EM_DIAGRAM): put nltime;
MPRINT(EM_DIAGRAM): put "*------------------------------------------------------------*";
MPRINT(EM_DIAGRAM): run;
*------------------------------------------------------------*
* Training Log
Date: February 14, 2018
Time: 21:46:10 o'clock
*------------------------------------------------------------*
MPRINT(EM_DIAGRAM): filename O1RQUWNK "EMWS4\MRKBSKT3\EMTRAIN.out" encoding="UTF-8" NOBOM;
MPRINT(EM_DIAGRAM): proc printto print=O1RQUWNK new;
MPRINT(EM_DIAGRAM): run;
MPRINT(EM_DIAGRAM): filename _LOG "\Workspaces\EMWS4\MRKBSKT3\EMLOG.log" encoding="UTF-8" NOBOM;
MPRINT(EM_DIAGRAM): data _null_;
MPRINT(EM_DIAGRAM): call symput('NLDATE', strip(put(date(), NLDATE.)));
MPRINT(EM_DIAGRAM): call symput('NLTIME', strip(put(datetime(), NLTIME.)));
MPRINT(EM_DIAGRAM): run;
MPRINT(EM_DIAGRAM): data _null_;
MPRINT(EM_DIAGRAM): nldate= sasmsg("sashelp.dmine", "log_date_note", 'N', "February 14, 2018" );
MPRINT(EM_DIAGRAM): nltime= sasmsg("sashelp.dmine", "log_time_note", 'N', "21:46:10 o'clock" );
MPRINT(EM_DIAGRAM): file _LOG;
MPRINT(EM_DIAGRAM): put "*------------------------------------------------------------*";
MPRINT(EM_DIAGRAM): put "User: ";
MPRINT(EM_DIAGRAM): put nldate;
MPRINT(EM_DIAGRAM): put nltime;
MPRINT(EM_DIAGRAM): put "Site: 70112404";
MPRINT(EM_DIAGRAM): put "Platform: X64_10HOME";
MPRINT(EM_DIAGRAM): put "Maintenance Release: 9.04.01M4P110916";
MPRINT(EM_DIAGRAM): put "EM Version: 14.2";
MPRINT(EM_DIAGRAM): put "* ";
MPRINT(EM_DIAGRAM): run;
MPRINT(EM_DIAGRAM): filename _LOGIN "C:\Workspaces\EMWS4\MRKBSKT3\EMTRAIN.log" encoding="UTF-8" NOBOM;
MPRINT(EM_COPYFILE): data _null_;
MPRINT(EM_COPYFILE): length line $20000;
MPRINT(EM_COPYFILE): file _LOG MOD lrecl=20000;
MPRINT(EM_COPYFILE): fid=fopen("_LOGIN",'i',20000,'v');
MPRINT(EM_COPYFILE): if fid > 0 then do;
MPRINT(EM_COPYFILE): do while(^fread(fid));
MPRINT(EM_COPYFILE): rlen = frlen(fid);
MPRINT(EM_COPYFILE): rc= fget(fid,line,20000);
MPRINT(EM_COPYFILE): start = length(line)-length(left(line))+1;
MPRINT(EM_COPYFILE): line=strip(line);
MPRINT(EM_COPYFILE): put @start line;
MPRINT(EM_COPYFILE): end;
MPRINT(EM_COPYFILE): if fid > 0 then rc=fclose(fid);
MPRINT(EM_COPYFILE): end;
MPRINT(EM_COPYFILE): run;
MPRINT(EM_DIAGRAM): ;
MPRINT(EM_DIAGRAM): filename _LOGIN;
MPRINT(EM_DIAGRAM): data _null_;
MPRINT(EM_DIAGRAM): file _LOG mod;
MPRINT(EM_DIAGRAM): put _page_;
MPRINT(EM_DIAGRAM): run;
MPRINT(EM_DIAGRAM): filename _LOGIN "C:Workspaces\EMWS4\MRKBSKT3\EMSCORE.log" encoding="UTF-8" NOBOM;
MPRINT(EM_DIAGRAM): ;
MPRINT(EM_DIAGRAM): data _null_;
MPRINT(EM_DIAGRAM): file _LOG mod;
MPRINT(EM_DIAGRAM): put _page_;
MPRINT(EM_DIAGRAM): run;
MPRINT(EM_DIAGRAM): filename _LOGIN "C:\\Workspaces\EMWS4\MRKBSKT3\EMREPORT.log" encoding="UTF-8" NOBOM;
MPRINT(EM_DIAGRAM): ;
MPRINT(EM_DIAGRAM): filename _LOGIN;
MPRINT(EM_DIAGRAM): filename _LOG;
MPRINT(EM_DIAGRAM): filename _OUT "C:\Users\Workspaces\EMWS4\MRKBSKT3\EMOUTPUT.out" encoding="UTF-8" NOBOM;
MPRINT(EM_DIAGRAM): data _null_;
MPRINT(EM_DIAGRAM): call symput('NLDATE', strip(put(date(), NLDATE.)));
MPRINT(EM_DIAGRAM): call symput('NLTIME', strip(put(datetime(), NLTIME.)));
MPRINT(EM_DIAGRAM): run;
MPRINT(EM_DIAGRAM): data _null_;
MPRINT(EM_DIAGRAM): nldate= sasmsg("sashelp.dmine", "log_date_note", 'N', "February 14, 2018" );
MPRINT(EM_DIAGRAM): nltime= sasmsg("sashelp.dmine", "log_time_note", 'N', "21:46:10 o'clock" );
MPRINT(EM_DIAGRAM): file _OUT;
MPRINT(EM_DIAGRAM): put "*------------------------------------------------------------*";
MPRINT(EM_DIAGRAM): put "User: Joel Edem";
MPRINT(EM_DIAGRAM): put nldate;
MPRINT(EM_DIAGRAM): put nltime;
MPRINT(EM_DIAGRAM): put "*------------------------------------------------------------*";
MPRINT(EM_DIAGRAM): put "* Training Output";
MPRINT(EM_DIAGRAM): put "*------------------------------------------------------------*";
MPRINT(EM_DIAGRAM): run;
MPRINT(EM_DIAGRAM): filename _OUTIN "C:\Users\EMWS4\MRKBSKT3\EMTRAIN.out" encoding="UTF-8" NOBOM;
MPRINT(EM_DIAGRAM): ;
MPRINT(EM_COPYFILE): data _null_;
MPRINT(EM_COPYFILE): length line $20000;
MPRINT(EM_COPYFILE): file _OUT MOD lrecl=20000;
MPRINT(EM_COPYFILE): fid=fopen("_OUTIN",'i',20000,'v');
MPRINT(EM_COPYFILE): if fid > 0 then do;
MPRINT(EM_COPYFILE): do while(^fread(fid));
MPRINT(EM_COPYFILE): rlen = frlen(fid);
MPRINT(EM_COPYFILE): rc= fget(fid,line,20000);
MPRINT(EM_COPYFILE): start = length(line)-length(left(line))+1;
MPRINT(EM_COPYFILE): line=strip(line);
MPRINT(EM_COPYFILE): put @start line;
MPRINT(EM_COPYFILE): end;
MPRINT(EM_COPYFILE): if fid > 0 then rc=fclose(fid);
MPRINT(EM_COPYFILE): end;
MPRINT(EM_COPYFILE): run;
MPRINT(EM_DIAGRAM): ;
MPRINT(EM_DIAGRAM): filename _OUTIN;
MPRINT(EM_DIAGRAM): data _null_;
MPRINT(EM_DIAGRAM): file _OUT mod;
MPRINT(EM_DIAGRAM): put _page_;
MPRINT(EM_DIAGRAM): put // "*------------------------------------------------------------*";
MPRINT(EM_DIAGRAM): put "* Score Output";
MPRINT(EM_DIAGRAM): put "*------------------------------------------------------------*";
MPRINT(EM_DIAGRAM): run;
MPRINT(EM_DIAGRAM): filename _OUTIN "C:\Workspaces\EMWS4\MRKBSKT3\EMSCORE.out" encoding="UTF-8" NOBOM;
MPRINT(EM_DIAGRAM): ;
MPRINT(EM_DIAGRAM): filename _OUTIN;
MPRINT(EM_DIAGRAM): data _null_;
MPRINT(EM_DIAGRAM): file _OUT mod;
MPRINT(EM_DIAGRAM): put _page_;
MPRINT(EM_DIAGRAM): put // "*------------------------------------------------------------*";
MPRINT(EM_DIAGRAM): put "* Report Output";
MPRINT(EM_DIAGRAM): put "*------------------------------------------------------------*";
MPRINT(EM_DIAGRAM): run;
MPRINT(EM_DIAGRAM): filename _OUTIN "C:\Users\Joel Edem\Desktop\DataMining\Devoir1\Devoir1\Workspaces\EMWS4\MRKBSKT3\EMREPORT.out" encoding="UTF-8" NOBOM;
MPRINT(EM_DIAGRAM): ;
MPRINT(EM_DIAGRAM): filename _OUTIN;
MPRINT(EM_DIAGRAM): filename _OUT;
MPRINT(EM_DIAGRAM): filename _emtool_ 'C:\Users\Joel Edem\Desktop\DataMining\Devoir1\Devoir1\Workspaces\EMWS4\MRKBSKT3\EMRUNSTATUS.xml' encoding="UTF-8" NOBOM;
22351 proc freq data=EMWS4.MRKBSKT3_VariableSet noprint;
MPRINT(EM_DIAGRAM): proc freq data=EMWS4.MRKBSKT3_VariableSet noprint;
22352 table ROLE*LEVEL/out=WORK.MRKBSKT3META;
MPRINT(EM_DIAGRAM): table ROLE*LEVEL/out=WORK.MRKBSKT3META;
22353 run;
MPRINT(EM_DIAGRAM): run;
NOTE: There were 2 observations read from the data set EMWS4.MRKBSKT3_VARIABLESET.
NOTE: The data set WORK.MRKBSKT3META has 2 observations and 4 variables.
NOTE: PROCEDURE FREQ used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
22354 proc print data=WORK.MRKBSKT3META label noobs;
MPRINT(EM_DIAGRAM): proc print data=WORK.MRKBSKT3META label noobs;
22355 var ROLE LEVEL COUNT;
MPRINT(EM_DIAGRAM): var ROLE LEVEL COUNT;
22356 label ROLE = "%sysfunc(sasmsg(sashelp.dmine, meta_role_vlabel, NOQUOTE))" LEVEL = "%sysfunc(sasmsg(sashelp.dmine, meta_level_vlabel, NOQUOTE))" COUNT = "%sysfunc(sasmsg(sashelp.dmine, rpt_count_vlabel, NOQUOTE))";
MPRINT(EM_DIAGRAM): label ROLE = "Role" LEVEL = "Measurement Level" COUNT = "Frequency Count";
22357 title9 ' ';
MPRINT(EM_DIAGRAM): title9 ' ';
22358 title10 "%sysfunc(sasmsg(sashelp.dmine, rpt_varSummary_title , NOQUOTE))";
MPRINT(EM_DIAGRAM): title10 "Variable Summary";
MPRINT(EM_DIAGRAM): run;
22359 run;
NOTE: There were 2 observations read from the data set WORK.MRKBSKT3META.
NOTE: The PROCEDURE PRINT printed page 1.
NOTE: PROCEDURE PRINT used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
22360 title10;
MPRINT(EM_DIAGRAM): title10;
22361 %let EMEXCEPTIONSTRING=;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): * MRKBSKT3: Generation of macros and macro variables;
MPRINT(EM_DIAGRAM): * To see the code generated, set the EM_DEBUG macro variable to SOURCE or _ALL_;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): * MRKBSKT3: EM Macro Variables and Macros;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------* ;
MPRINT(EM_DIAGRAM): * System Macro Variables;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------* ;
MPRINT(EM_DIAGRAM): data _null_;
MPRINT(EM_DIAGRAM): length string $2000;
MPRINT(EM_DIAGRAM): string = 'Devoir1';
MPRINT(EM_DIAGRAM): call symput('EM_PROJECTNAME', trim(string));
MPRINT(EM_DIAGRAM): string = 'market_basket';
MPRINT(EM_DIAGRAM): call symput('EM_WSNAME', trim(string));
MPRINT(EM_DIAGRAM): run;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------* ;
MPRINT(EM_DIAGRAM): * Properties Macro Variables ;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------* ;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): * Files Macro Variables;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): * Import Macro Variables;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): * Export Macro Variables;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): * Decision Macro Variables;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): * Statement Macro Variables;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): data _null_;
MPRINT(EM_DIAGRAM): set EMWS4.Ids3_EMINFO;
MPRINT(EM_DIAGRAM): where key in('HPDMSAMPLE', 'IDSTABLE');
MPRINT(EM_DIAGRAM): if key = 'HPDMSAMPLE' then call symput('_ForceGrid', '1');
MPRINT(EM_DIAGRAM): else call symput('_IDS_TABLE', DATA);
MPRINT(EM_DIAGRAM): run;
MPRINT(HPDM_PERFORMANCE): ;
PERFORMANCE DETAILS
MPRINT(EM_DIAGRAM): ;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): * Variable Macros;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): * General Variable Macros;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): * Target Variable Macros;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): * Input Variable Macros;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): * Rejected Variable Macros;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): * Misc Variable Macros;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): * End Create EM Macro Variables and Macros;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
22693 *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
22694 * MRKBSKT3: Generation of macros and macro variables;
MPRINT(EM_DIAGRAM): * MRKBSKT3: Generation of macros and macro variables;
22695 * To see the code generated, set the EM_DEBUG macro variable to SOURCE or _ALL_;
MPRINT(EM_DIAGRAM): * To see the code generated, set the EM_DEBUG macro variable to SOURCE or _ALL_;
22696 *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
22697 %let EMEXCEPTIONSTRING=;
22698 *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
22699 * TRAIN: MRKBSKT3;
MPRINT(EM_DIAGRAM): * TRAIN: MRKBSKT3;
22700 *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
22701 %let EM_ACTION = TRAIN;
22702 %let syscc = 0;
22703 %macro main;
22704
22705 %if %upcase(&EM_ACTION) = CREATE %then %do;
22706
22707 filename temp catalog 'sashelp.emexpl.marketBasket_create.source';
22708 %include temp;
22709 filename temp;
22710 %create;
22711 %end;
22712 %else
22713 %if %upcase(&EM_ACTION) = TRAIN %then %do;
22714
22715 filename temp catalog 'sashelp.emexpl.marketBasket_train.source';
22716 %include temp;
22717 filename temp;
22718 %train;
22719 %end;
22720 %else
22721 %if %upcase(&EM_ACTION) = SCORE %then %do;
22722
22723 filename temp catalog 'sashelp.emexpl.marketBasket_score.source';
22724 %include temp;
22725 filename temp;
22726 %score;
22727 %end;
22728 %else
22729 %if %upcase(&EM_ACTION) = OPENMAPPINGTABLE %then %do;
22730
22731 filename temp catalog 'sashelp.emexpl.marketBasket_actions.source';
22732 %include temp;
22733 filename temp;
22734 %openMappingTable;
22735 %end;
22736 %if %upcase(&EM_ACTION) = OPENRULETABLE %then %do;
22737
22738 filename temp catalog 'sashelp.emexpl.marketBasket_actions.source';
22739 %include temp;
22740 filename temp;
22741 %openruleTable;
22742 %end;
22743
22744 %mend main;
22745 %main;
MPRINT(EM_DIAGRAM):
MPRINT(MAIN): filename temp catalog 'sashelp.emexpl.marketBasket_train.source';
NOTE: %INCLUDE (level 1) file TEMP is file SASHELP.EMEXPL.MARKETBASKET_TRAIN.SOURCE.
22746 +%macro train;
22747 + %let EM_MININGFUNCTION = %bquote(Association);
22749 + %em_checkmacro(name=em_property_ExportIdRule, value=N);
22750 + %em_checkmacro(name=em_property_NumTransposeRules, value=200);
22751 + %em_checkmacro(name=em_property_Recommendation, value=N);
22752 + %em_checkmacro(name=em_property_TransposeSelection, value=AUTO);
22754 + %if "&em_import_transaction" eq "" %then %do;
22755 + %let emexceptionString = exception.server.IMPORT.NOTRANSACTION,1;
22756 + %goto doendm;
22757 + %end;
22759 + %if "%em_binary_target" eq "" and "%em_nominal_target" eq "" and "%em_ordinal_target" eq "" %then %do;
22760 + %let emexceptionString = exception.server.METADATA.USE1CLASSTARGET;
22761 + %goto doendm;
22762 + %end;
22763 + %if "%em_id" eq "" %then %do;
22764 + %let emexceptionString = exception.server.METADATA.USE1ID;
22765 + %goto doendm;
22766 + %end;
22769 + %em_getname(key=OUTFREQ, type=DATA);
22770 + %em_getname(key=OUTRULE, type=DATA);
22771 + %em_getname(key=MAPPING, type=DATA);
22772 + %em_getname(key=CHOICE, type=DATA);
22774 + %let mb_parent = ;
22775 + %let mb_child = ;
22776 + %if %sysfunc(exist(&em_user_mapping)) %then %do;
22777 + %if %sysfunc(exist(&em_user_choice)) %then %do;
22778 + proc sort data=&em_user_choice out=_choice(rename=(choice=RoleVariable));
22779 + by choice;
22780 + run;
22781 + proc sort data=&em_user_mapping out=_mapping;
22782 + by RoleVariable;
22783 + run;
22784 + data _mapping;
22785 + merge _mapping _choice;
22786 + by RoleVariable;
22787 + run;
22788 + data _null_;
22789 + set _mapping;
22790 + if Role = 'PARENT' then
22791 + call symput('mb_parent', tranwrd(trim(NAME), '"', '""'));
22792 + else
22793 + if Role = 'CHILD' then
22794 + call symput('mb_child', tranwrd(trim(NAME), '"', '""'));
22795 + run;
22796 + %end;
22797 + %else %do;
22798 + data _null_;
22799 + set &em_user_mapping;
22800 + if Role = 'PARENT' then
22801 + call symput('mb_parent', tranwrd(trim(ROLEVARIABLE), '"', '""'));
22802 + else
22803 + if Role = 'CHILD' then
22804 + call symput('mb_child', tranwrd(trim(ROLEVARIABLE), '"', '""'));
22805 + run;
22806 + %end;
22807 + %end;
22809 + %let rerunFlag = 0;
22810 + %if %sysfunc(exist(&em_user_outrule)) %then %do;
22811 + data work.UserRule;
22812 + set &em_user_outrule(keep=RULE Transpose);
22813 + where Transpose = 'Y';
22814 + run;
22815 + %let rerunFlag = 1;
22816 + %end;
22818 + data _null_;
22819 + vvn = getoption('VALIDVARNAME');
22820 + call symput('_vvn', strip(vvn));
22821 + run;
22822 + %if "&_vvn" ne "ANY" %then %do;
22823 + options validvarname = ANY;
22824 + %end;
22826 + proc sort data=&em_import_transaction out=_tempTransaction;
22827 + by %em_id;
22828 + run;
22829 + proc taxonomy data=_tempTransaction
22830 + items=&em_property_itemCount conf=&em_property_MinConf.Percent
22831 + %if "&em_property_SupportType" = "COUNT" %then %do;
22832 + %if ("&em_property_minSupport" ne "NaN" and "&em_property_minSupport" ne " " and
22833 + "&em_property_minSupport" ne ".") %then %do;
22834 + support=&em_property_MinSupport
22835 + %end;
22836 + %end;
22837 + %else %do;
22838 + pctsup=&em_property_MinPctSupport.Percent
22839 + %end;
22840 + maxbsktsz=&em_property_MaxBasketSize minbsktsz=&em_property_MinBasketSize
22841 + %if "&em_property_normalize" = "Y" %then %do;
22842 + norm
22843 + %end;
22845 + %if %upcase("&em_property_maxRules") ne "-1" %then %do;
22846 + maxRules = &em_property_maxRules
22847 + %end;
22849 + %if %upcase("&em_property_numRules") ne "-1" %then %do;
22850 + numRules = &em_property_numRules
22851 + %end;
22853 + %if "&em_property_minlift" ne "NaN" and "&em_property_minlift" ne " " and
22854 + "&em_property_minlift" ne "." %then %do;
22855 + lift = &em_property_minlift
22856 + %end;
22858 + %let sortCriterion = &em_property_sortCriterion;
22859 + %let hierarchyDs = %sysfunc(strip(&em_property_hierarchyDs));
22860 + %if &em_property_sortCriterion = SUPPORTLIFT %then %do;
22861 + %if "&hierarchyDs" eq "" %then
22862 + %let sortCriterion = SUPPORT;
22863 + %else
22864 + %let sortCriterion = SUP_LIFT;
22865 + %end;
22867 + %if "&hierarchyDs" ne ""
22868 + and (%sysfunc(exist(&em_property_hierarchyDs)) or %sysfunc(exist(&em_property_hierarchyDs, VIEW))) %then %do;
22869 + %if (%nrbquote(&mb_child) eq ) or (%nrbquote(&mb_parent) eq ) %then %do;
22870 + %let emexceptionString = exception.server.MARKETBASKET.MISSINGCHILDORPARENT;
22871 + %goto doendm;
22872 + %end;
22873 + %end;
22875 + %if "&hierarchyDs" ne "" and
22876 + "&em_property_minsupportlift" ne "NaN" and "&em_property_minsupportlift" ne " " and
22877 + "&em_property_minsupportlift" ne "." %then %do;
22878 + sup_lift = &em_property_minsupportlift
22879 + %end;
22881 + %if &sortCriterion eq LEFTSIZE %then %do;
22882 + sortBy LHSSZ
22883 + %end;
22884 + %else
22885 + %if &sortCriterion eq RIGHTSIZE %then %do;
22886 + sortBy RHSSZ
22887 + %end;
22888 + %else %do;
22889 + sortBy &sortCriterion
22890 + %end;
22892 + outfreq=&EM_USER_OUTFREQ
22893 + outrule =&EM_USER_OUTRULE ;
22895 + customer %em_id;
22897 + %let target=;
22898 + %if &em_num_nominal_target >= 1 %then %do;
22899 + %let target = %scan(%em_nominal_target, 1);
22900 + %end;
22901 + %else %do;
22902 + %if &em_num_ordinal_target >= 1 %then %do;
22903 + %let target = %scan(%em_ordinal_target, 1);
22904 + %end;
22905 + %else %let target = %scan(%em_binary_target, 1);
22906 + %end;
22908 + target ⌖
22910 + %if "&hierarchyDs" ne ""
22911 + and (%sysfunc(exist(&em_property_hierarchyDs)) or %sysfunc(exist(&em_property_hierarchyDs, VIEW))) %then %do;
22912 + Dimension data=&em_property_hierarchyDs parent="&mb_parent"n child="&mb_child"n;
22913 + %end;
22915 + run;
22917 + %if "&_vvn" ne "ANY" %then %do;
22918 + options validvarname = V7;
22919 + %end;
22920 + %symdel mb_child mb_parent _vvn;
22922 + proc datasets lib=WORK nolist;
22923 + delete _tempTransaction;
22924 + run;
22926 + %if %sysfunc(exist(&em_user_outrule)) %then %do;
22927 + %if (&em_property_transposeSelection eq AUTO) or
22928 + ((&em_property_transposeSelection eq USER) and ^&rerunFlag) %then %do;
22929 + data &em_user_outrule;
22930 + set &em_user_outrule;
22931 + label SET_SIZE = "%sysfunc(sasmsg(sashelp.dmine, rpt_setsize_vlabel, NOQUOTE))";
22932 + label Transpose = "%sysfunc(sasmsg(sashelp.dmine, rpt_transposeRule_vlabel, NOQUOTE))";
22933 + SET_SIZE = LHS + RHS;
22934 + if _N_ <= &em_property_NumTransposeRules then transpose = 'Y';
22935 + else transpose = 'N';
22936 + run;
22937 + %end;
22939 + %if &rerunFlag and (&em_property_transposeSelection eq USER) %then %do;
22940 + proc sort data=&em_user_outrule;
22941 + by rule;
22942 + run;
22943 + proc sort data=work.UserRule;
22944 + by rule;
22945 + run;
22946 + data &em_user_outrule;
22947 + merge &em_user_outrule(in=_a) work.UserRule;
22948 + by rule;
22949 + label SET_SIZE = "%sysfunc(sasmsg(sashelp.dmine, rpt_setsize_vlabel, NOQUOTE))";
22950 + label Transpose = "%sysfunc(sasmsg(sashelp.dmine, rpt_transposeRule_vlabel, NOQUOTE))";
22951 + SET_SIZE = LHS + RHS;
22952 + if Transpose eq '' then Transpose='N';
22953 + if _a then output;
22954 + run;
22955 + proc sort data=&em_user_outrule out=&em_user_outrule;
22956 + by RULEID;
22957 + run;
22958 + %end;
22959 + %end;
22961 + %if &rerunFlag %then %do;
22962 + proc delete data=work.UserRule;
22963 + run;
22964 + %end;
22966 + %em_report(viewtype=DATA, key=OUTFREQ, Block=Rules, Description=itemstatistics, localize=Y, autodisplay=Y);
22967 + %em_report(viewtype=DATA, key=OUTRULE, Block=Rules, Description=ruletable, localize=Y, autodisplay=N);
22968 + %em_report(viewtype=SCATTER, Key=OUTRULE, Description=statplot, Localize=Y, Block=Rules,
22969 + Y= SUPPORT, X= CONF, GROUP=SET_SIZE, autoDisplay=Y, TIPTEXT=RULE);
22970 + %em_report(viewtype=LINEPLOT, Key=OUTRULE, Description=rulestat, Localize=Y, Block=Rules,
22971 + Y= LIFT, X= RULEID, autoDisplay=Y, TIPTEXT=RULE);
22973 + data &em_data_eminfo;
22974 + length TARGET KEY $32 DATA $43;
22975 + TARGET="";
22976 + KEY="ASSOCIATION";
22977 + DATA="&EM_NODEID";
22978 + output;
22979 + run;
22981 + %doendm:
22983 +%mend train;
NOTE: %INCLUDE (level 1) ending.
MPRINT(MAIN): filename temp;
NOTE: Fileref TEMP has been deassigned.
MPRINT(TRAIN): ;
MPRINT(TRAIN): ;
MPRINT(TRAIN): ;
MPRINT(TRAIN): ;
MPRINT(TRAIN): ;
MPRINT(TRAIN): ;
MPRINT(TRAIN): ;
MPRINT(TRAIN): ;
MPRINT(TRAIN): proc sort data=EMWS4.MRKBSKT3_CHOICE out=_choice(rename=(choice=RoleVariable));
MPRINT(TRAIN): by choice;
MPRINT(TRAIN): run;
NOTE: There were 4 observations read from the data set EMWS4.MRKBSKT3_CHOICE.
NOTE: The data set WORK._CHOICE has 4 observations and 3 variables.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
MPRINT(TRAIN): proc sort data=EMWS4.MRKBSKT3_MAPPING out=_mapping;
MPRINT(TRAIN): by RoleVariable;
MPRINT(TRAIN): run;
NOTE: There were 2 observations read from the data set EMWS4.MRKBSKT3_MAPPING.
NOTE: The data set WORK._MAPPING has 2 observations and 2 variables.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
MPRINT(TRAIN): data _mapping;
MPRINT(TRAIN): merge _mapping _choice;
MPRINT(TRAIN): by RoleVariable;
MPRINT(TRAIN): run;
NOTE: There were 2 observations read from the data set WORK._MAPPING.
NOTE: There were 4 observations read from the data set WORK._CHOICE.
NOTE: The data set WORK._MAPPING has 4 observations and 4 variables.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
MPRINT(TRAIN): data _null_;
MPRINT(TRAIN): set _mapping;
MPRINT(TRAIN): if Role = 'PARENT' then call symput('mb_parent', tranwrd(trim(NAME), '"', '""'));
MPRINT(TRAIN): else if Role = 'CHILD' then call symput('mb_child', tranwrd(trim(NAME), '"', '""'));
MPRINT(TRAIN): run;
NOTE: There were 4 observations read from the data set WORK._MAPPING.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
MPRINT(TRAIN): data work.UserRule;
MPRINT(TRAIN): set EMWS4.MRKBSKT3_OUTRULE(keep=RULE Transpose);
MPRINT(TRAIN): where Transpose = 'Y';
MPRINT(TRAIN): run;
NOTE: There were 12 observations read from the data set EMWS4.MRKBSKT3_OUTRULE.
WHERE Transpose='Y';
NOTE: The data set WORK.USERRULE has 12 observations and 2 variables.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
MPRINT(TRAIN): data _null_;
MPRINT(TRAIN): vvn = getoption('VALIDVARNAME');
MPRINT(TRAIN): call symput('_vvn', strip(vvn));
MPRINT(TRAIN): run;
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
MPRINT(TRAIN): options validvarname = ANY;
MPRINT(TRAIN): proc sort data=EMWS4.Ids3_DATA out=_tempTransaction;
MPRINT(TRAIN): by
MPRINT(EM_ID): order
MPRINT(TRAIN): ;
MPRINT(TRAIN): run;
NOTE: There were 1384617 observations read from the data set EMWS4.IDS3_DATA.
NOTE: View EMWS4.IDS3_DATA.VIEW used (Total process time):
real time 0.24 seconds
cpu time 0.32 seconds
NOTE: There were 1384617 observations read from the data set INSTACAR.ITEMS_FINAL.
NOTE: The data set WORK._TEMPTRANSACTION has 1384617 observations and 2 variables.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.37 seconds
cpu time 0.54 seconds
MPRINT(TRAIN): proc taxonomy data=_tempTransaction items=3 conf=20Percent pctsup=1.0Percent maxbsktsz=1000 minbsktsz=1 maxRules = 100000 numRules = 1000 sortBy SUPPORT outfreq=EMWS4.MRKBSKT3_OUTFREQ outrule =EMWS4.MRKBSKT3_OUTRULE ;
MPRINT(TRAIN): customer
MPRINT(EM_ID): order
MPRINT(TRAIN): ;
MPRINT(TRAIN): target product_name;
MPRINT(TRAIN): Dimension data=INSTACAR.PRODHIERARCHY parent="ParentProd"n child="Product"n;
MPRINT(TRAIN): run;
WARNING: The NUMRULES option is obsolete and the specified value will be ignored. Use the MAXRULES option instead.
NOTE: PROC TAXONOMY running with following settings:
Dimension: Specified
Minimum Support: 1.00%
Minimum Confidence: 20.00%
Minimum Lift: 1.00
Minimum Support Lift: 0.00
Maximum Rule size: 3
Maximum Candidates: 1000000000
Value Normalization: None
Minimum Basket Size: 1
Maximum Basket Size: 1000
NOTE: Minimum support set to: 1312
ERROR: Cycle detected in the item hierarchy. Aborting.
Ancestor = "missing"
Descendent = "100% Cauliflower & Sweet Potato Riced Veggies"
NOTE: The SAS System stopped processing this step because of errors.
NOTE: There were 1384617 observations read from the data set WORK._TEMPTRANSACTION.
NOTE: There were 49822 observations read from the data set INSTACAR.PRODHIERARCHY.
WARNING: The data set EMWS4.MRKBSKT3_OUTFREQ may be incomplete. When this step was stopped there were 0 observations and 0 variables.
WARNING: The data set EMWS4.MRKBSKT3_OUTRULE may be incomplete. When this step was stopped there were 0 observations and 0 variables.
WARNING: Data set EMWS4.MRKBSKT3_OUTRULE was not replaced because this step was stopped.
NOTE: PROCEDURE TAXONOMY used (Total process time):
real time 0.84 seconds
cpu time 0.59 seconds
MPRINT(TRAIN): options validvarname = V7;
WARNING: Attempt to delete macro variable MB_CHILD failed. Variable not found.
WARNING: Attempt to delete macro variable MB_PARENT failed. Variable not found.
WARNING: Attempt to delete macro variable _VVN failed. Variable not found.
MPRINT(TRAIN): proc datasets lib=WORK nolist;
MPRINT(TRAIN): delete _tempTransaction;
MPRINT(TRAIN): run;
NOTE: Deleting WORK._TEMPTRANSACTION (memtype=DATA).
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
MPRINT(TRAIN): data EMWS4.MRKBSKT3_OUTRULE;
MPRINT(TRAIN): set EMWS4.MRKBSKT3_OUTRULE;
MPRINT(TRAIN): label SET_SIZE = "Relations";
MPRINT(TRAIN): label Transpose = "Transpose Rule";
MPRINT(TRAIN): SET_SIZE = LHS + RHS;
MPRINT(TRAIN): if _N_ <= 5000 then transpose = 'Y';
MPRINT(TRAIN): else transpose = 'N';
MPRINT(TRAIN): run;
NOTE: There were 12 observations read from the data set EMWS4.MRKBSKT3_OUTRULE.
NOTE: The data set EMWS4.MRKBSKT3_OUTRULE has 12 observations and 12 variables.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
MPRINT(TRAIN): proc delete data=work.UserRule;
MPRINT(TRAIN): run;
NOTE: Deleting WORK.USERRULE (memtype=DATA).
NOTE: PROCEDURE DELETE used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
MPRINT(EM_REPORT): data WORK.EM_USER_REPORT;
MPRINT(EM_REPORT): retain id 0;
MPRINT(EM_REPORT): id + 1;
MPRINT(EM_REPORT): length VIEW 8 NAME $32 VALUE $400;
MPRINT(EM_REPORT): NAME = "KEY";
MPRINT(EM_REPORT): VALUE = "OUTFREQ";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "VIEWTYPE";
MPRINT(EM_REPORT): VALUE = "DATA";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "AUTODISPLAY";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SPK";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "COMPARE";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LOCALIZE";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZEROWX";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZEROWY";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZECOLX";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZECOLY";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NROWS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NCOLS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISCRETEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISCRETEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LATTICEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LATTICEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LATTICETYPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ABSOLUTEVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SORTORDER";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SORTORDERY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ORIENTATION";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "METHOD";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DIRECTION";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "BYSET";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "RENDERMODE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DESCRIPTION";
MPRINT(EM_REPORT): VALUE = "itemstatistics";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "X";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EXCLUDEVARS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Z";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YVARS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FREQVARS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "AXIS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FREQ";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "GROUP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SUBGROUP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "BLOCK";
MPRINT(EM_REPORT): VALUE = "Rules";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "COLOR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "COLORINDEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TIPTEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TOOLTIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "REPORTID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "IDVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SIZE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "VALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "VIEWS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "PARENT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODETEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ABOVETEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "BELOWTEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODESIZE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "STATS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "CLASSDIST";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "INTDIST";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FOLDER";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YPLOTTYPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XREF";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XREF2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YREF";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2REF";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YREF2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2REF2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "GROUPINDEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "JOIN";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XEXCLUDE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FREQEXCLUDE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YEXCLUDE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NAME";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "HEIGHT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "WIDTH";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XAXISLABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2AXISLABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YAXISLABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISPLAYXLABEL";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISPLAYYLABEL";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "CHOICETEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SEGMENTVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LOWERBAND";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "UPPERBAND";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YLINE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKKEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODEKEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODEID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODEVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODECOLOR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODESHAPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODESHAPEVAR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODELABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODETIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKFROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKTO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKCOLOR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKWIDTH";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKTIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XFROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XTO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YFROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YTO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "MATRIXVAR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "RESPONSE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SERIES";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DESCARG";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SLIDER";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "MarkerSize";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Marker";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y1";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y3";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y4";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y5";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y6";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y7";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y8";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y9";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y10";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y11";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y12";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y13";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y14";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y15";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y16";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TITLE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LEGEND";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LEGENDTITLE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SHAPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "METHOD";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NOBINMISS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.93411067357943;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): run;
NOTE: The data set WORK.EM_USER_REPORT has 132 observations and 4 variables.
NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.01 seconds
MPRINT(TRAIN): ;
MPRINT(EM_REPORT): data WORK.EM_USER_REPORT;
MPRINT(EM_REPORT): set WORK.EM_USER_REPORT end=eof;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): if eof then do;
MPRINT(EM_REPORT): id+1;
MPRINT(EM_REPORT): NAME = "KEY";
MPRINT(EM_REPORT): VALUE = "OUTRULE";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "VIEWTYPE";
MPRINT(EM_REPORT): VALUE = "DATA";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "AUTODISPLAY";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SPK";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "COMPARE";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LOCALIZE";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZEROWX";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZEROWY";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZECOLX";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZECOLY";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NROWS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NCOLS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISCRETEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISCRETEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LATTICEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LATTICEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LATTICETYPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ABSOLUTEVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SORTORDER";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SORTORDERY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ORIENTATION";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "METHOD";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DIRECTION";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "BYSET";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "RENDERMODE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DESCRIPTION";
MPRINT(EM_REPORT): VALUE = "ruletable";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "X";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EXCLUDEVARS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Z";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YVARS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FREQVARS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "AXIS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FREQ";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "GROUP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SUBGROUP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "BLOCK";
MPRINT(EM_REPORT): VALUE = "Rules";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "COLOR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "COLORINDEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TIPTEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TOOLTIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "REPORTID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "IDVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SIZE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "VALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "VIEWS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "PARENT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODETEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ABOVETEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "BELOWTEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODESIZE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "STATS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "CLASSDIST";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "INTDIST";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FOLDER";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YPLOTTYPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XREF";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XREF2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YREF";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2REF";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YREF2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2REF2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "GROUPINDEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "JOIN";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XEXCLUDE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FREQEXCLUDE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YEXCLUDE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NAME";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "HEIGHT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "WIDTH";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XAXISLABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2AXISLABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YAXISLABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISPLAYXLABEL";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISPLAYYLABEL";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "CHOICETEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SEGMENTVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LOWERBAND";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "UPPERBAND";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YLINE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKKEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODEKEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODEID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODEVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODECOLOR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODESHAPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODESHAPEVAR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODELABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODETIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKFROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKTO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKCOLOR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKWIDTH";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKTIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XFROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XTO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YFROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YTO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "MATRIXVAR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "RESPONSE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SERIES";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DESCARG";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SLIDER";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "MarkerSize";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Marker";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y1";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y3";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y4";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y5";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y6";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y7";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y8";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y9";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y10";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y11";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y12";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y13";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y14";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y15";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y16";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TITLE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LEGEND";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LEGENDTITLE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SHAPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "METHOD";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NOBINMISS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.79485076656325;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): end;
MPRINT(EM_REPORT): run;
NOTE: There were 132 observations read from the data set WORK.EM_USER_REPORT.
NOTE: The data set WORK.EM_USER_REPORT has 264 observations and 4 variables.
NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.03 seconds
MPRINT(TRAIN): ;
MPRINT(EM_REPORT): data WORK.EM_USER_REPORT;
MPRINT(EM_REPORT): set WORK.EM_USER_REPORT end=eof;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): if eof then do;
MPRINT(EM_REPORT): id+1;
MPRINT(EM_REPORT): NAME = "KEY";
MPRINT(EM_REPORT): VALUE = "OUTRULE";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "VIEWTYPE";
MPRINT(EM_REPORT): VALUE = "SCATTER";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "AUTODISPLAY";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SPK";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "COMPARE";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LOCALIZE";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZEROWX";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZEROWY";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZECOLX";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZECOLY";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NROWS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NCOLS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISCRETEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISCRETEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LATTICEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LATTICEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LATTICETYPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ABSOLUTEVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SORTORDER";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SORTORDERY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ORIENTATION";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "METHOD";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DIRECTION";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "BYSET";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "RENDERMODE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DESCRIPTION";
MPRINT(EM_REPORT): VALUE = "statplot";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "X";
MPRINT(EM_REPORT): VALUE = "CONF";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EXCLUDEVARS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y";
MPRINT(EM_REPORT): VALUE = "SUPPORT";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Z";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YVARS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FREQVARS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "AXIS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FREQ";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "GROUP";
MPRINT(EM_REPORT): VALUE = "SET_SIZE";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SUBGROUP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "BLOCK";
MPRINT(EM_REPORT): VALUE = "Rules";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "COLOR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "COLORINDEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TIPTEXT";
MPRINT(EM_REPORT): VALUE = "RULE";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TOOLTIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "REPORTID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "IDVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SIZE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "VALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "VIEWS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "PARENT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODETEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ABOVETEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "BELOWTEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODESIZE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "STATS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "CLASSDIST";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "INTDIST";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FOLDER";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YPLOTTYPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XREF";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XREF2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YREF";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2REF";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YREF2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2REF2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "GROUPINDEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "JOIN";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XEXCLUDE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FREQEXCLUDE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YEXCLUDE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NAME";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "HEIGHT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "WIDTH";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XAXISLABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2AXISLABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YAXISLABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISPLAYXLABEL";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISPLAYYLABEL";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "CHOICETEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SEGMENTVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LOWERBAND";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "UPPERBAND";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YLINE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKKEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODEKEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODEID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODEVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODECOLOR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODESHAPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODESHAPEVAR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODELABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODETIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKFROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKTO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKCOLOR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKWIDTH";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKTIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XFROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XTO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YFROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YTO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "MATRIXVAR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "RESPONSE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SERIES";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DESCARG";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SLIDER";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "MarkerSize";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Marker";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y1";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y3";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y4";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y5";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y6";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y7";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y8";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y9";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y10";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y11";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y12";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y13";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y14";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y15";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y16";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TITLE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LEGEND";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LEGENDTITLE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SHAPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "METHOD";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NOBINMISS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.5979623629702;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): end;
MPRINT(EM_REPORT): run;
NOTE: There were 264 observations read from the data set WORK.EM_USER_REPORT.
NOTE: The data set WORK.EM_USER_REPORT has 397 observations and 4 variables.
NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.01 seconds
MPRINT(TRAIN): ;
MPRINT(EM_REPORT): data WORK.EM_USER_REPORT;
MPRINT(EM_REPORT): set WORK.EM_USER_REPORT end=eof;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): if eof then do;
MPRINT(EM_REPORT): id+1;
MPRINT(EM_REPORT): NAME = "KEY";
MPRINT(EM_REPORT): VALUE = "OUTRULE";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "VIEWTYPE";
MPRINT(EM_REPORT): VALUE = "LINEPLOT";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "AUTODISPLAY";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SPK";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "COMPARE";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LOCALIZE";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZEROWX";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZEROWY";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZECOLX";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EQUALIZECOLY";
MPRINT(EM_REPORT): VALUE = "N";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NROWS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NCOLS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISCRETEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISCRETEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LATTICEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LATTICEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LATTICETYPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ABSOLUTEVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SORTORDER";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SORTORDERY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ORIENTATION";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "METHOD";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DIRECTION";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "BYSET";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "RENDERMODE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DESCRIPTION";
MPRINT(EM_REPORT): VALUE = "rulestat";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "X";
MPRINT(EM_REPORT): VALUE = "RULEID";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "EXCLUDEVARS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y";
MPRINT(EM_REPORT): VALUE = "LIFT";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Z";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YVARS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FREQVARS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "AXIS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FREQ";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "GROUP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SUBGROUP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "BLOCK";
MPRINT(EM_REPORT): VALUE = "Rules";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "COLOR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "COLORINDEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TIPTEXT";
MPRINT(EM_REPORT): VALUE = "RULE";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TOOLTIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "REPORTID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "IDVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SIZE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "VALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "VIEWS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "PARENT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODETEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "ABOVETEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "BELOWTEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODESIZE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "STATS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "CLASSDIST";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "INTDIST";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FOLDER";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YPLOTTYPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XREF";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XREF2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YREF";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2REF";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YREF2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2REF2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "GROUPINDEX";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "JOIN";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XEXCLUDE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "FREQEXCLUDE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YEXCLUDE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NAME";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "HEIGHT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "WIDTH";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XAXISLABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2AXISLABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YAXISLABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISPLAYXLABEL";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DISPLAYYLABEL";
MPRINT(EM_REPORT): VALUE = "Y";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "CHOICETEXT";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SEGMENTVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LOWERBAND";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "UPPERBAND";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YLINE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKKEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODEKEY";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODEID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODEVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODECOLOR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODESHAPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODESHAPEVAR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODELABEL";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NODETIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKID";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKVALUE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKFROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKTO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKCOLOR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKWIDTH";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LINKTIP";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XFROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "XTO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YFROM";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "YTO";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "MATRIXVAR";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "RESPONSE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SERIES";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "DESCARG";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SLIDER";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "MarkerSize";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Marker";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y1";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y2";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y3";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y4";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y5";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y6";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y7";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y8";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y9";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y10";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y11";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y12";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y13";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y14";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y15";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "Y16";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "TITLE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LEGEND";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "LEGENDTITLE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "SHAPE";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "METHOD";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): NAME = "NOBINMISS";
MPRINT(EM_REPORT): VALUE = "";
MPRINT(EM_REPORT): VIEW = 0.62968061241772;
MPRINT(EM_REPORT): output;
MPRINT(EM_REPORT): end;
MPRINT(EM_REPORT): run;
NOTE: There were 397 observations read from the data set WORK.EM_USER_REPORT.
NOTE: The data set WORK.EM_USER_REPORT has 530 observations and 4 variables.
NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.01 seconds
MPRINT(TRAIN): ;
MPRINT(TRAIN): data EMWS4.MRKBSKT3_EMINFO;
MPRINT(TRAIN): length TARGET KEY $32 DATA $43;
MPRINT(TRAIN): TARGET="";
MPRINT(TRAIN): KEY="ASSOCIATION";
MPRINT(TRAIN): DATA="MRKBSKT3";
MPRINT(TRAIN): output;
MPRINT(TRAIN): run;
NOTE: The data set EMWS4.MRKBSKT3_EMINFO has 1 observations and 3 variables.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
MPRINT(MAIN): ;
MPRINT(EM_DIAGRAM): ;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
MPRINT(EM_DIAGRAM): * End TRAIN: MRKBSKT3;
MPRINT(EM_DIAGRAM): *------------------------------------------------------------*;
22986
22987 *------------------------------------------------------------*;
22988 * End TRAIN: MRKBSKT3;
22989 *------------------------------------------------------------*;
*------------------------------------------------------------*
*
* ERROR: Run time error was encountered. The system error returned was 1008.
* Please report unresolved problems to Technical Support.
*
*------------------------------------------------------------*
MPRINT(EM_DIAGRAM): proc printto;
MPRINT(EM_DIAGRAM): run;
Hello Ceasar-
The error suggests that the ancestor of "100% Cauliflower & Sweet Potato Riced Veggies" is missing, possibly from the hierarchy data set. A first step is to check the hierarchy data and see whether that suggestion is correct.
Technical support can take a look if you need. In that case, contact technical support, and send a model package.
Have a great day!
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Use this tutorial as a handy guide to weigh the pros and cons of these commonly used machine learning algorithms.
Find more tutorials on the SAS Users YouTube channel.