Sistema SAS 1 ;*';*";*/;quit;run; 2 OPTIONS PAGENO=MIN; 3 %LET SYSLAST=ST192.FITNESS_2CP; 4 %LET _CLIENTTASKLABEL='EMDiagramExecution'; 5 %LET _CLIENTPROCESSFLOWNAME='Process Flow'; 6 %LET _CLIENTPROJECTPATH='C:\CARLOS\TRABAJO\PROYECTOS\...\EGuide\BY-LinRegCP1.egp'; 7 %LET _CLIENTPROJECTPATHHOST='ITSN091'; 8 %LET _CLIENTPROJECTNAME='BY-LinRegCP1.egp'; 9 %LET _SASPROGRAMFILE=''; 10 %LET _SASPROGRAMFILEHOST=''; 11 12 ODS _ALL_ CLOSE; 13 OPTIONS DEV=PNG; 14 GOPTIONS XPIXELS=0 YPIXELS=0; 15 FILENAME EGSR TEMP; 16 ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR 17 STYLE=HtmlBlue 18 STYLESHEET=(URL="file:///C:/Program%20Files/SASHome/SASEnterpriseGuide/7.1/Styles/HtmlBlue.css") 19 NOGTITLE 20 NOGFOOTNOTE 21 GPATH=&sasworklocation 22 ENCODING=UTF8 23 options(rolap="on") 24 ; NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR 25 26 GOPTIONS ACCESSIBLE; 28 29 *------------------------------------------------------------*; 30 * EM Version: 14.2; 31 * SAS Release: 9.04.01M4P110916; 32 * Host: ITSN091; 33 * Project Path: C:\CARLOS\TRABAJO\PROYECTOS\...\Miner; 34 * Project Name: StRegMiner; 35 * Diagram Id: EMWS4; 36 * Diagram Name: SipleLinReg_BY; 37 * Generated by: ...; 38 * Date: 20MAY2019:17:25:35; 39 *------------------------------------------------------------*; 40 *------------------------------------------------------------*; 41 * Macro Variables; 42 *------------------------------------------------------------*; 43 %let EM_PROJECT =; 44 %let EM_PROJECTNAME =; 45 %let EM_WSNAME =; 46 %let EM_WSDESCRIPTION =SipleLinReg_BY; 47 %let EM_SUMMARY =WORK.SUMMARY; 48 %let EM_NUMTASKS =SINGLE; 49 %let EM_EDITMODE =R; 50 %let EM_DEBUGVAL =; 51 %let EM_ACTION =run; 52 *------------------------------------------------------------*; 53 %macro em_usedatatable; 54 %if ^%symexist(EM_USEDATATABLE) %then %do; 55 %let EM_USEDATATABLE = Y; 56 %end; 57 %if "&EM_USEDATATABLE" ne "N" %then %do; 58 %global Ids_data Ids_newdata; 59 *------------------------------------------------------------*; 60 * Data Tables; 61 *------------------------------------------------------------*; 62 %let Ids_data = EXST1.FITNESS_2CP; 63 %let Ids_newdata =; 64 *------------------------------------------------------------*; 65 %end; 66 %global Ids_source; 67 %if "&Ids_newdata" ne "" %then %do; 68 %let Ids_source = USERTABLE; 69 %end; 70 %else %do; 71 %let Ids_source = DATASOURCE; 72 %end; 73 %mend em_usedatatable; 74 %em_usedatatable; 75 *------------------------------------------------------------*; 76 * Create workspace data set; 77 *------------------------------------------------------------*; 78 data workspace; 79 length property $64 value $200; 80 property= 'PROJECTLOCATION'; 81 value= "&EM_PROJECT"; 82 output; 83 property= 'PROJECTNAME'; 84 value= "&EM_PROJECTNAME"; 85 output; 86 property= 'WORKSPACENAME'; 87 value= "&EM_WSNAME"; 88 output; 89 property= 'WORKSPACEDESCRIPTION'; 90 value= "&EM_WSDESCRIPTION"; 91 output; 92 property= 'SUMMARYDATASET'; 93 value= "&EM_SUMMARY"; 94 output; 95 property= 'NUMTASKS'; 96 value= "&EM_NUMTASKS"; 97 output; 98 property= 'EDITMODE'; 99 value= "&EM_EDITMODE"; 100 output; 101 property= 'DEBUG'; 102 value= "&EM_DEBUGVAL"; 103 output; 104 run; NOTE: The data set WORK.WORKSPACE has 8 observations and 2 variables. NOTE: Sentencia DATA used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 105 *------------------------------------------------------------*; 106 * Create nodes data set; 107 *------------------------------------------------------------*; 108 data nodes; 109 length id $12 component $32 description $64 X 8 Y 8 diagramID $32 parentID $32; 110 id= "Reg"; 111 component="Regression"; 112 description= "Regresión (2)"; 113 diagramID="_ROOT_"; 114 parentID=""; 115 X=462; 116 Y=66; 117 output; 118 id= "Ids"; 119 component="DataSource"; 120 description= "FITNESS_2CP"; 121 diagramID="_ROOT_"; 122 parentID=""; 123 X=66; 124 Y=66; 125 output; 126 id= "Grp"; 127 component="StartGroup"; 128 description= "Inicio de grupos"; 129 diagramID="_ROOT_"; 130 parentID=""; 131 X=264; 132 Y=66; 133 output; 134 id= "EndGrp"; 135 component="EndGroup"; 136 description= "Final de grupos"; 137 diagramID="_ROOT_"; 138 parentID=""; 139 X=660; 140 Y=66; 141 output; 142 run; NOTE: The data set WORK.NODES has 4 observations and 7 variables. NOTE: Sentencia DATA used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 143 *------------------------------------------------------------*; 144 * DataSource Properties; 145 *------------------------------------------------------------*; 146 data WORK.fitnesscp_P; 147 length Property $ 32 148 Value $ 200 149 ; 150 151 Property="Name"; 152 Value="FITNESS_2CP"; 153 output; 154 Property="CreateDate"; 155 Value="1873992061.4"; 156 output; 157 Property="ModifyDate"; 158 Value="1873992061.4"; 159 output; 160 Property="CreatedBy"; 161 Value="..."; 162 output; 163 Property="ModifiedBy"; 164 Value="..."; 165 output; 166 Property="SampleSizeType"; 167 Value=""; 168 output; 169 Property="SampleSize"; 170 Value=""; 171 output; 172 ; 173 run; NOTE: The data set WORK.FITNESSCP_P has 7 observations and 2 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 174 *------------------------------------------------------------*; 175 * EMNOTES File for Reg; 176 *------------------------------------------------------------*; 177 data _null_; 178 if symget('sysscp')=:'WIN' then dsep='\'; 179 else if symget('sysscp')=:'DNT' then dsep='\'; 180 else dsep = '/'; 181 filepath = pathname('work')!!dsep!!"Reg_EMNOTES.txt"; 182 call symput('DSPATH', filepath); 183 run; NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 184 data _null_; 185 filename dspath "&dspath" encoding="utf-8" NOBOM; 186 file dspath; 187 run; NOTE: The file DSPATH is: Nombre archivo=C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\Reg_EMNOTES.txt, RECFM=V,LRECL=131068, Tamaño de archivo (bytes)=0, Última modificación=21 de mayo de 2019 10H25, Create Time=21 de mayo de 2019 10H11 NOTE: 0 records were written to the file DSPATH. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 188 *------------------------------------------------------------*; 189 * Variable Attributes for Ids; 190 *------------------------------------------------------------*; 191 data WORK.Ids_VariableAttribute; 192 length Variable $64 AttributeName $32 AttributeValue $64; 193 Variable='Oxygen_Consumption'; 194 AttributeName="ROLE"; 195 AttributeValue='TARGET'; 196 Output; 197 Variable='group'; 198 AttributeName="ROLE"; 199 AttributeValue='SEGMENT'; 200 Output; 201 run; NOTE: The data set WORK.IDS_VARIABLEATTRIBUTE has 2 observations and 3 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 202 *------------------------------------------------------------*; 203 * Decmeta Data Set for Ids; 204 *------------------------------------------------------------*; 205 data WORK.Ids_Oxygen_Consumpti_DM; 206 length _TYPE_ $ 32 207 VARIABLE $ 32 208 LABEL $ 256 209 FORMAT $ 32 210 LEVEL $ 32 211 TYPE $ 1 212 COST $ 32 213 USE $ 1 214 MIN 8 215 MEAN 8 216 MAX 8 217 ; 218 219 label _TYPE_="Type" 220 VARIABLE="Variable" 221 LABEL="Label" 222 FORMAT="Format" 223 LEVEL="Measurement Level" 224 TYPE="Type" 225 COST="Cost" 226 USE="Use" 227 MIN="Minimum" 228 MEAN="Mean" 229 MAX="Maximum" 230 ; 231 _TYPE_="MATRIX"; 232 VARIABLE=""; 233 LABEL=""; 234 FORMAT=""; 235 LEVEL="PROFIT"; 236 TYPE=""; 237 COST=""; 238 USE="N"; 239 MIN=.; 240 MEAN=.; 241 MAX=.; 242 output; 243 _TYPE_="TARGET"; 244 VARIABLE="Oxygen_Consumption"; 245 LABEL=""; 246 FORMAT=""; 247 LEVEL="INTERVAL"; 248 TYPE="N"; 249 COST=""; 250 USE=""; 251 MIN=37.39; 252 MEAN=47.375806452; 253 MAX=60.06; 254 output; 255 _TYPE_="PREDICTED"; 256 VARIABLE="P_Oxygen_Consumption"; 257 LABEL="Predicted: Oxygen_Consumption"; 258 FORMAT=""; 259 LEVEL=""; 260 TYPE="N"; 261 COST=""; 262 USE=""; 263 MIN=.; 264 MEAN=.; 265 MAX=.; 266 output; 267 _TYPE_="RESIDUAL"; 268 VARIABLE="R_Oxygen_Consumption"; 269 LABEL="Residual: Oxygen_Consumption"; 270 FORMAT=""; 271 LEVEL=""; 272 TYPE="N"; 273 COST=""; 274 USE=""; 275 MIN=.; 276 MEAN=.; 277 MAX=.; 278 output; 279 ; 280 run; NOTE: The data set WORK.IDS_OXYGEN_CONSUMPTI_DM has 4 observations and 11 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 281 *------------------------------------------------------------*; 282 * Decdata Data Set for Ids; 283 *------------------------------------------------------------*; 284 data WORK.Ids_Oxygen_Consumpti_DD(label="Oxygen_Consumption"); 285 length Oxygen_Consumption 8 286 ; 287 288 Oxygen_Consumption=37.39; 289 output; 290 Oxygen_Consumption=60.06; 291 output; 292 Oxygen_Consumption=48.725; 293 output; 294 ; 295 run; NOTE: The data set WORK.IDS_OXYGEN_CONSUMPTI_DD has 3 observations and 1 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 296 *------------------------------------------------------------*; 297 * EMNOTES File for Ids; 298 *------------------------------------------------------------*; 299 data _null_; 300 if symget('sysscp')=:'WIN' then dsep='\'; 301 else if symget('sysscp')=:'DNT' then dsep='\'; 302 else dsep = '/'; 303 filepath = pathname('work')!!dsep!!"Ids_EMNOTES.txt"; 304 call symput('DSPATH', filepath); 305 run; NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 306 data _null_; 307 filename dspath "&dspath" encoding="utf-8" NOBOM; 308 file dspath; 309 run; NOTE: The file DSPATH is: Nombre archivo=C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\Ids_EMNOTES.txt, RECFM=V,LRECL=131068, Tamaño de archivo (bytes)=0, Última modificación=21 de mayo de 2019 10H25, Create Time=21 de mayo de 2019 10H11 NOTE: 0 records were written to the file DSPATH. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 310 *------------------------------------------------------------*; 311 * Variable Attributes for Grp; 312 *------------------------------------------------------------*; 313 data WORK.Grp_VariableAttribute; 314 length Variable $64 AttributeName $32 AttributeValue $64; 315 Variable='group'; 316 AttributeName="GROUPROLE"; 317 AttributeValue='GROUP'; 318 Output; 319 run; NOTE: The data set WORK.GRP_VARIABLEATTRIBUTE has 1 observations and 3 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 320 *------------------------------------------------------------*; 321 * USERTRAINCODE File for Grp; 322 *------------------------------------------------------------*; 323 data _null_; 324 if symget('sysscp')=:'WIN' then dsep='\'; 325 else if symget('sysscp')=:'DNT' then dsep='\'; 326 else dsep = '/'; 327 filepath = pathname('work')!!dsep!!"Grp_USERTRAINCODE.sas"; 328 call symput('DSPATH', filepath); 329 run; NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 330 data _null_; 331 filename dspath "&dspath"; 332 file dspath; 333 run; NOTE: The file DSPATH is: Nombre archivo=C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\Grp_USERTRAINCODE.sas, RECFM=V,LRECL=32767, Tamaño de archivo (bytes)=0, Última modificación=21 de mayo de 2019 10H25, Create Time=21 de mayo de 2019 10H11 NOTE: 0 records were written to the file DSPATH. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 334 *------------------------------------------------------------*; 335 * EMNOTES File for Grp; 336 *------------------------------------------------------------*; 337 data _null_; 338 if symget('sysscp')=:'WIN' then dsep='\'; 339 else if symget('sysscp')=:'DNT' then dsep='\'; 340 else dsep = '/'; 341 filepath = pathname('work')!!dsep!!"Grp_EMNOTES.txt"; 342 call symput('DSPATH', filepath); 343 run; NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 344 data _null_; 345 filename dspath "&dspath" encoding="utf-8" NOBOM; 346 file dspath; 347 run; NOTE: The file DSPATH is: Nombre archivo=C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\Grp_EMNOTES.txt, RECFM=V,LRECL=131068, Tamaño de archivo (bytes)=0, Última modificación=21 de mayo de 2019 10H25, Create Time=21 de mayo de 2019 10H11 NOTE: 0 records were written to the file DSPATH. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 348 *------------------------------------------------------------*; 349 * USERTRAINCODE File for EndGrp; 350 *------------------------------------------------------------*; 351 data _null_; 352 if symget('sysscp')=:'WIN' then dsep='\'; 353 else if symget('sysscp')=:'DNT' then dsep='\'; 354 else dsep = '/'; 355 filepath = pathname('work')!!dsep!!"EndGrp_USERTRAINCODE.sas"; 356 call symput('DSPATH', filepath); 357 run; NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 358 data _null_; 359 filename dspath "&dspath"; 360 file dspath; 361 run; NOTE: The file DSPATH is: Nombre archivo=C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EndGrp_USERTRAINCODE.sas, RECFM=V,LRECL=32767, Tamaño de archivo (bytes)=0, Última modificación=21 de mayo de 2019 10H25, Create Time=21 de mayo de 2019 10H11 NOTE: 0 records were written to the file DSPATH. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 362 *------------------------------------------------------------*; 363 * EMNOTES File for EndGrp; 364 *------------------------------------------------------------*; 365 data _null_; 366 if symget('sysscp')=:'WIN' then dsep='\'; 367 else if symget('sysscp')=:'DNT' then dsep='\'; 368 else dsep = '/'; 369 filepath = pathname('work')!!dsep!!"EndGrp_EMNOTES.txt"; 370 call symput('DSPATH', filepath); 371 run; NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 372 data _null_; 373 filename dspath "&dspath" encoding="utf-8" NOBOM; 374 file dspath; 375 run; NOTE: The file DSPATH is: Nombre archivo=C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EndGrp_EMNOTES.txt, RECFM=V,LRECL=131068, Tamaño de archivo (bytes)=0, Última modificación=21 de mayo de 2019 10H25, Create Time=21 de mayo de 2019 10H11 NOTE: 0 records were written to the file DSPATH. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 376 *------------------------------------------------------------*; 377 * Create node properties data set; 378 *------------------------------------------------------------*; 379 data nodeprops; 380 length id $12 property $64 value $400; 381 id= "Reg"; 382 property="MainEffect"; 383 value= "Y"; 384 output; 385 id= "Reg"; 386 property="TwoFactor"; 387 value= "N"; 388 output; 389 id= "Reg"; 390 property="Polynomial"; 391 value= "N"; 392 output; 393 id= "Reg"; 394 property="PolynomialDegree"; 395 value= "2"; 396 output; 397 id= "Reg"; 398 property="Terms"; 399 value= "N"; 400 output; 401 id= "Reg"; 402 property="Error"; 403 value= "NORMAL"; 404 output; 405 id= "Reg"; 406 property="LinkFunction"; 407 value= "LOGIT"; 408 output; 409 id= "Reg"; 410 property="SuppressIntercept"; 411 value= "N"; 412 output; 413 id= "Reg"; 414 property="InputCoding"; 415 value= "DEVIATION"; 416 output; 417 id= "Reg"; 418 property="MinResourceUse"; 419 value= "N"; 420 output; 421 id= "Reg"; 422 property="ModelSelection"; 423 value= "NONE"; 424 output; 425 id= "Reg"; 426 property="SelectionCriterion"; 427 value= "DEFAULT"; 428 output; 429 id= "Reg"; 430 property="SelectionDefault"; 431 value= "Y"; 432 output; 433 id= "Reg"; 434 property="Sequential"; 435 value= "N"; 436 output; 437 id= "Reg"; 438 property="SlEntry"; 439 value= "0.05"; 440 output; 441 id= "Reg"; 442 property="SlStay"; 443 value= "0.05"; 444 output; 445 id= "Reg"; 446 property="Start"; 447 value= "0"; 448 output; 449 id= "Reg"; 450 property="Stop"; 451 value= "0"; 452 output; 453 id= "Reg"; 454 property="Force"; 455 value= "0"; 456 output; 457 id= "Reg"; 458 property="Hierarchy"; 459 value= "CLASS"; 460 output; 461 id= "Reg"; 462 property="Rule"; 463 value= "NONE"; 464 output; 465 id= "Reg"; 466 property="MaxStep"; 467 value= "."; 468 output; 469 id= "Reg"; 470 property="StepOutput"; 471 value= "N"; 472 output; 473 id= "Reg"; 474 property="OptimizationTechnique"; 475 value= "DEFAULT"; 476 output; 477 id= "Reg"; 478 property="ModelDefaults"; 479 value= "Y"; 480 output; 481 id= "Reg"; 482 property="MaxIterations"; 483 value= "."; 484 output; 485 id= "Reg"; 486 property="MaxFunctionCalls"; 487 value= "."; 488 output; 489 id= "Reg"; 490 property="MaxCPUTime"; 491 value= "1 HOUR"; 492 output; 493 id= "Reg"; 494 property="ConvDefaults"; 495 value= "Y"; 496 output; 497 id= "Reg"; 498 property="AbsConvValue"; 499 value= "-1.34078E154"; 500 output; 501 id= "Reg"; 502 property="AbsFValue"; 503 value= "0"; 504 output; 505 id= "Reg"; 506 property="AbsFTime"; 507 value= "1"; 508 output; 509 id= "Reg"; 510 property="AbsGValue"; 511 value= "0.00001"; 512 output; 513 id= "Reg"; 514 property="AbsGTime"; 515 value= "1"; 516 output; 517 id= "Reg"; 518 property="AbsXValue"; 519 value= "1E-8"; 520 output; 521 id= "Reg"; 522 property="AbsXTime"; 523 value= "1"; 524 output; 525 id= "Reg"; 526 property="FConvValue"; 527 value= "0"; 528 output; 529 id= "Reg"; 530 property="FConvTimes"; 531 value= "1"; 532 output; 533 id= "Reg"; 534 property="GConvValue"; 535 value= "1E-6"; 536 output; 537 id= "Reg"; 538 property="GConvTimes"; 539 value= "1"; 540 output; 541 id= "Reg"; 542 property="ClParm"; 543 value= "Y"; 544 output; 545 id= "Reg"; 546 property="Covout"; 547 value= "N"; 548 output; 549 id= "Reg"; 550 property="CovB"; 551 value= "N"; 552 output; 553 id= "Reg"; 554 property="CorB"; 555 value= "N"; 556 output; 557 id= "Reg"; 558 property="Simple"; 559 value= "N"; 560 output; 561 id= "Reg"; 562 property="SuppressOutput"; 563 value= "N"; 564 output; 565 id= "Reg"; 566 property="Details"; 567 value= "N"; 568 output; 569 id= "Reg"; 570 property="PrintDesignMatrix"; 571 value= "N"; 572 output; 573 id= "Reg"; 574 property="SASSPDS"; 575 value= "N"; 576 output; 577 id= "Reg"; 578 property="Performance"; 579 value= "N"; 580 output; 581 id= "Reg"; 582 property="ExcludedVariable"; 583 value= "REJECT"; 584 output; 585 id= "Reg"; 586 property="ForceRun"; 587 value= "N"; 588 output; 589 id= "Reg"; 590 property="RunAction"; 591 value= "Train"; 592 output; 593 id= "Reg"; 594 property="Component"; 595 value= "Regression"; 596 output; 597 id= "Reg"; 598 property="Interactions"; 599 value= ""; 600 output; 601 id= "Reg"; 602 property="EM_FILE_EMNOTES"; 603 value= "Reg_EMNOTES.txt"; 604 output; 605 id= "Ids"; 606 property="DataSource"; 607 value= "fitnesscp"; 608 output; 609 id= "Ids"; 610 property="Scope"; 611 value= "LOCAL"; 612 output; 613 id= "Ids"; 614 property="Role"; 615 value= "TRAIN"; 616 output; 617 %let Ids_lib = %scan(&Ids_data, 1, .); 618 id= "Ids"; 619 property="Library"; 620 value= "&Ids_lib"; 621 output; 622 %let Ids_member = %scan(&Ids_data, 2, .); 623 id= "Ids"; 624 property="Table"; 625 value= "&Ids_member"; 626 output; 627 id= "Ids"; 628 property="NCols"; 629 value= "3"; 630 output; 631 id= "Ids"; 632 property="NObs"; 633 value= "31"; 634 output; 635 id= "Ids"; 636 property="NBytes"; 637 value= "66560"; 638 output; 639 id= "Ids"; 640 property="Segment"; 641 value= ""; 642 output; 643 id= "Ids"; 644 property="DataSourceRole"; 645 value= "TRAIN"; 646 output; 647 id= "Ids"; 648 property="OutputType"; 649 value= "DATA"; 650 output; 651 id= "Ids"; 652 property="ForceRun"; 653 value= "Y"; 654 output; 655 id= "Ids"; 656 property="ComputeStatistics"; 657 value= "N"; 658 output; 659 id= "Ids"; 660 property="DataSelection"; 661 value= "&Ids_source"; 662 output; 663 id= "Ids"; 664 property="NewTable"; 665 value= "&Ids_newdata"; 666 output; 667 id= "Ids"; 668 property="MetaAdvisor"; 669 value= "BASIC"; 670 output; 671 id= "Ids"; 672 property="ApplyIntervalLevelLowerLimit"; 673 value= "Y"; 674 output; 675 id= "Ids"; 676 property="IntervalLowerLimit"; 677 value= "20"; 678 output; 679 id= "Ids"; 680 property="ApplyMaxPercentMissing"; 681 value= "Y"; 682 output; 683 id= "Ids"; 684 property="MaxPercentMissing"; 685 value= "50"; 686 output; 687 id= "Ids"; 688 property="ApplyMaxClassLevels"; 689 value= "Y"; 690 output; 691 id= "Ids"; 692 property="MaxClassLevels"; 693 value= "20"; 694 output; 695 id= "Ids"; 696 property="IdentifyEmptyColumns"; 697 value= "Y"; 698 output; 699 id= "Ids"; 700 property="VariableValidation"; 701 value= "STRICT"; 702 output; 703 id= "Ids"; 704 property="NewVariableRole"; 705 value= "REJECT"; 706 output; 707 id= "Ids"; 708 property="DropMapVariables"; 709 value= "Y"; 710 output; 711 id= "Ids"; 712 property="DsId"; 713 value= "fitnesscp"; 714 output; 715 id= "Ids"; 716 property="DsSampleName"; 717 value= ""; 718 output; 719 id= "Ids"; 720 property="DsSampleSizeType"; 721 value= ""; 722 output; 723 id= "Ids"; 724 property="DsSampleSize"; 725 value= ""; 726 output; 727 id= "Ids"; 728 property="DsCreatedBy"; 729 value= "..."; 730 output; 731 id= "Ids"; 732 property="DsCreateDate"; 733 value= "1873992061.4"; 734 output; 735 id= "Ids"; 736 property="DsModifiedBy"; 737 value= "..."; 738 output; 739 id= "Ids"; 740 property="DsModifyDate"; 741 value= "1873992061.4"; 742 output; 743 id= "Ids"; 744 property="DsScope"; 745 value= "LOCAL"; 746 output; 747 id= "Ids"; 748 property="Sample"; 749 value= "D"; 750 output; 751 id= "Ids"; 752 property="SampleSizeType"; 753 value= "PERCENT"; 754 output; 755 id= "Ids"; 756 property="SampleSizePercent"; 757 value= "20"; 758 output; 759 id= "Ids"; 760 property="SampleSizeObs"; 761 value= "10000"; 762 output; 763 id= "Ids"; 764 property="DBPassThrough"; 765 value= "Y"; 766 output; 767 id= "Ids"; 768 property="RunAction"; 769 value= "Train"; 770 output; 771 id= "Ids"; 772 property="Component"; 773 value= "DataSource"; 774 output; 775 id= "Ids"; 776 property="Description"; 777 value= ""; 778 output; 779 id= "Ids"; 780 property="EM_VARIABLEATTRIBUTES"; 781 value= "WORK.Ids_VariableAttribute"; 782 output; 783 id= "Ids"; 784 property="EM_DECMETA_Oxygen_Consumption"; 785 value= "WORK.Ids_Oxygen_Consumpti_DM"; 786 output; 787 id= "Ids"; 788 property="EM_DECDATA_Oxygen_Consumption"; 789 value= "WORK.Ids_Oxygen_Consumpti_DD"; 790 output; 791 id= "Ids"; 792 property="EM_FILE_EMNOTES"; 793 value= "Ids_EMNOTES.txt"; 794 output; 795 id= "Grp"; 796 property="Location"; 797 value= "CATALOG"; 798 output; 799 id= "Grp"; 800 property="Catalog"; 801 value= "SASHELP.EMUTIL.GP.SOURCE"; 802 output; 803 id= "Grp"; 804 property="ForceRun"; 805 value= "Y"; 806 output; 807 id= "Grp"; 808 property="TargetGroup"; 809 value= "N"; 810 output; 811 id= "Grp"; 812 property="Mode"; 813 value= "STRATIFY"; 814 output; 815 id= "Grp"; 816 property="SizeType"; 817 value= "PERCENT"; 818 output; 819 id= "Grp"; 820 property="SizePercent"; 821 value= "10.0"; 822 output; 823 id= "Grp"; 824 property="SizeObs"; 825 value= "."; 826 output; 827 id= "Grp"; 828 property="RandomSeed"; 829 value= "12345"; 830 output; 831 id= "Grp"; 832 property="MinimumObs"; 833 value= "10"; 834 output; 835 id= "Grp"; 836 property="IndexCount"; 837 value= "10"; 838 output; 839 id= "Grp"; 840 property="RunAction"; 841 value= "Train"; 842 output; 843 id= "Grp"; 844 property="Component"; 845 value= "StartGroup"; 846 output; 847 id= "Grp"; 848 property="DataNeeded"; 849 value= "Y"; 850 output; 851 id= "Grp"; 852 property="ToolType"; 853 value= "UTILITY"; 854 output; 855 id= "Grp"; 856 property="ToolPrefix"; 857 value= "Grp"; 858 output; 859 id= "Grp"; 860 property="EM_VARIABLEATTRIBUTES"; 861 value= "WORK.Grp_VariableAttribute"; 862 output; 863 id= "Grp"; 864 property="EM_FILE_USERTRAINCODE"; 865 value= "Grp_USERTRAINCODE.sas"; 866 output; 867 id= "Grp"; 868 property="EM_FILE_EMNOTES"; 869 value= "Grp_EMNOTES.txt"; 870 output; 871 id= "EndGrp"; 872 property="Location"; 873 value= "CATALOG"; 874 output; 875 id= "EndGrp"; 876 property="Catalog"; 877 value= "SASHELP.EMUTIL.ENDGP.SOURCE"; 878 output; 879 id= "EndGrp"; 880 property="ToolType"; 881 value= "MODEL"; 882 output; 883 id= "EndGrp"; 884 property="ForceRun"; 885 value= "N"; 886 output; 887 id= "EndGrp"; 888 property="RunAction"; 889 value= "Train"; 890 output; 891 id= "EndGrp"; 892 property="Component"; 893 value= "EndGroup"; 894 output; 895 id= "EndGrp"; 896 property="ToolPrefix"; 897 value= "EndGrp"; 898 output; 899 id= "EndGrp"; 900 property="EM_FILE_USERTRAINCODE"; 901 value= "EndGrp_USERTRAINCODE.sas"; 902 output; 903 id= "EndGrp"; 904 property="EM_FILE_EMNOTES"; 905 value= "EndGrp_EMNOTES.txt"; 906 output; 907 run; NOTE: The data set WORK.NODEPROPS has 131 observations and 3 variables. NOTE: Sentencia DATA used (Total process time): real time 0.01 seconds cpu time 0.00 seconds 908 *------------------------------------------------------------*; 909 * Create connections data set; 910 *------------------------------------------------------------*; 911 data connect; 912 length from to $12; 913 from="Ids"; 914 to="Grp"; 915 output; 916 from="Reg"; 917 to="EndGrp"; 918 output; 919 from="Grp"; 920 to="Reg"; 921 output; 922 run; NOTE: The data set WORK.CONNECT has 3 observations and 2 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 923 *------------------------------------------------------------*; 924 * Create actions to run data set; 925 *------------------------------------------------------------*; 926 %macro emaction; 927 %let actionstring = %upcase(&EM_ACTION); 928 %if %index(&actionstring, RUN) or %index(&actionstring, REPORT) %then %do; 929 data actions; 930 length id $12 action $40; 931 id="EndGrp"; 932 %if %index(&actionstring, RUN) %then %do; 933 action='run'; 934 output; 935 %end; 936 %if %index(&actionstring, REPORT) %then %do; 937 action='report'; 938 output; 939 %end; 940 run; 941 %end; 942 %mend; 943 %emaction; NOTE: The data set WORK.ACTIONS has 1 observations and 2 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 944 *------------------------------------------------------------*; 945 * Execute the actions; 946 *------------------------------------------------------------*; 947 %em5batch(execute, workspace=workspace, nodes=nodes, connect=connect, datasources=datasources, nodeprops=nodeprops, action=actions); NOTE: MACRO EM5: XML=, SCL=, WORKSPACE=workspace, ---------: NODES=nodes, CONNECT=connect, ---------: DATASOURCES=datasources, ---------: NODEPROPS=nodeprops, ACTION=actions EXECUTING EM5BATCH WORKSPACE = workspace NODES = nodes NODEPROPS = nodeprops CONNECT = connect DATASOURCES = datasources ACTION = actions xmlFile=sclEntry=wsDs=workspace nodesDs=nodes connectDs=connect datasourcesDs=datasources propsDs=nodeprops actionDs=actions 13958 %let empath = %nrstr(C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2); 13959 %let EM_USERID = %bquote(...); 13960 %let EM_METAHOST =; 13961 %let EM_METAPORT = 8561; 13962 %let EMPROJECTCODE = %nrstr(C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\System\STARTUP.sas); 1 13963 %let _EM_TREECONVERSION=0; 13964 data _null_; 13965 set EMWS3.EM_NODEID end=eof; 13966 where upcase(Component) ='DECISIONTREE' and CLASS = 'SASHELP.EMMODL.DECISIONTREE.CLASS'; 13967 if eof then call symput('_EM_TREECONVERSION', '1'); 13968 run; NOTE: There were 0 observations read from the data set EMWS3.EM_NODEID. WHERE (UPCASE(Component)='DECISIONTREE') and (CLASS='SASHELP.EMMODL.DECISIONTREE.CLASS'); NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 1 1 13969 ODS listing; 13970 %let EM_FORCERUN = Y; 1 13971 filename _notes 'C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\Reg\EMNOTES.txt' encoding="UTF-8" NOBOM; 13972 filename _fref1 "C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\Reg_EMNOTES.txt" encoding="UTF-8" NOBOM; 13973 filename _fref2 "C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\Reg\EMNOTES.txt" encoding="UTF-8" NOBOM; 13974 %em_copyfile(infref=_fref1, outfref=_fref2); NOTE: The file _FREF2 is: Nombre archivo=C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\Reg\EMNOTES.txt, RECFM=V,LRECL=80000, Tamaño de archivo (bytes)=0, Última modificación=21 de mayo de 2019 10H25, Create Time=21 de mayo de 2019 10H25 NOTE: 0 records were written to the file _FREF2. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 13975 filename _fref1; NOTE: Fileref _FREF1 has been deassigned. 13976 filename _fref2; NOTE: Fileref _FREF2 has been deassigned. 1 1 13978 filename _notes 'C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\Ids\EMNOTES.txt' encoding="UTF-8" NOBOM; 13979 filename _fref1 "C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\Ids_EMNOTES.txt" encoding="UTF-8" NOBOM; 13980 filename _fref2 "C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\Ids\EMNOTES.txt" encoding="UTF-8" NOBOM; 13981 %em_copyfile(infref=_fref1, outfref=_fref2); NOTE: The file _FREF2 is: Nombre archivo=C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\Ids\EMNOTES.txt, RECFM=V,LRECL=80000, Tamaño de archivo (bytes)=0, Última modificación=21 de mayo de 2019 10H25, Create Time=21 de mayo de 2019 10H25 NOTE: 0 records were written to the file _FREF2. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 13982 filename _fref1; NOTE: Fileref _FREF1 has been deassigned. 13983 filename _fref2; NOTE: Fileref _FREF2 has been deassigned. NOTE: There were 3 observations read from the data set WORK.IDS_OXYGEN_CONSUMPTI_DD. NOTE: The data set EMWS3.IDS_OXYGEN_CONSUMPTI_DD has 3 observations and 1 variables. NOTE: There were 4 observations read from the data set WORK.IDS_OXYGEN_CONSUMPTI_DM. NOTE: The data set EMWS3.IDS_OXYGEN_CONSUMPTI_DM has 4 observations and 11 variables. 1 1 13985 filename _notes 'C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\Grp\EMNOTES.txt' encoding="UTF-8" NOBOM; 14196 %let EMEXCEPTIONSTRING=; 14197 *------------------------------------------------------------*; 14198 * CREATE: Grp; 14199 *------------------------------------------------------------*; 14200 %let EM_ACTION = CREATE; 14201 %let syscc = 0; 14202 %macro main; 14203 14204 filename temp catalog 'sashelp.emutil.gp_macros.source'; 14205 %include temp; 14206 filename temp; 14207 14208 %SetProperties; 14209 14210 %if %upcase(&EM_ACTION) = CREATE %then %do; 14211 14212 filename temp catalog 'sashelp.emutil.gp_create.source'; 14213 %include temp; 14214 filename temp; 14215 14216 %create; 14217 %end; 14218 %else 14219 %if %upcase(&EM_ACTION) = TRAIN %then %do; 14220 14221 filename temp catalog 'sashelp.emutil.gp_train.source'; 14222 %include temp; 14223 filename temp; 14224 14225 %train; 14226 %end; 14227 %else 14228 %if %upcase(&EM_ACTION) = SCORE %then %do; 14229 14230 filename temp catalog 'sashelp.emutil.gp_score.source'; 14231 %include temp; 14232 filename temp; 14233 14234 %score; 14235 %end; 14236 %else 14237 %if %upcase(&EM_ACTION) = REPORT %then %do; 14238 14239 filename temp catalog 'sashelp.emutil.gp_report.source'; 14240 %include temp; 14241 filename temp; 14242 14243 %report; 14244 14245 %end; 14246 %else 14247 %if %upcase(&EM_ACTION) = POSTLOOP %then %do; 14248 14249 filename temp catalog 'sashelp.emutil.gp_postloop.source'; 14250 %include temp; 14251 filename temp; 14252 14253 %postloop; 14254 14255 %end; 14256 14257 %doendm: 14258 %mend main; 14259 14260 %main; NOTE: %INCLUDE (level 1) file TEMP is file SASHELP.EMUTIL.GP_MACROS.SOURCE. 14261 +%macro SetProperties; 14262 + %em_checkmacro(name=EM_PROPERTY_MODE, global=Y, value=STRATIFY); 14263 + %em_checkmacro(name=EM_PROPERTY_TARGETGROUP, global=Y, value=Y); 14264 + %em_checkmacro(name=EM_PROPERTY_INDEXCOUNT, global=Y, value=10); 14265 + %em_checkmacro(name=EM_PROPERTY_MINIMUMOBS, global=Y, value=10); 14266 + %em_checkmacro(name=EM_PROPERTY_SIZETYPE, global=Y, value=PERCENT); 14267 + %em_checkmacro(name=EM_PROPERTY_SIZEOBS, global=Y, value=.); 14268 + %em_checkmacro(name=EM_PROPERTY_SIZEPERCENT, global=Y, value=10); 14269 +%mend SetProperties; 14270 + NOTE: %INCLUDE (level 1) ending. NOTE: Fileref TEMP has been deassigned. NOTE: %INCLUDE (level 1) file TEMP is file SASHELP.EMUTIL.GP_CREATE.SOURCE. 14271 +%macro create; 14272 + 14273 + %em_property(name=Mode, value=STRATIFY); 14274 + %em_property(name=TargetGroup, value=N); 14275 + %em_property(name=IndexCount, value=10); 14276 + %em_property(name=MinimumObs, value=10); 14277 + %em_property(name=SizeType, value=PERCENT); 14278 + %em_property(name=SizeObs, value=.); 14279 + %em_property(name=SizePercent, value=10); 14280 + %em_property(name=ForceRun, value=N); 14281 + %em_property(name=DataNeeded, value=Y); 14282 + %em_property(name=RandomSeed, value=12345); 14283 + 14284 + %em_register(key=EMLOOPINFO, type=DATA); 14285 + %em_register(key=TARGETINFO, type=DATA); 14286 + %em_register(key=GROUPINFO, type=DATA); 14287 + %em_register(key=BOOSTINFO, type=DATA); 14288 + %em_register(key=BAGINFO, type=DATA); 14289 + %em_register(key=INDEXINFO, type=DATA); 14290 + 14291 + %em_register(key=BOOSTWEIGHT, type=DATA); 14292 + %em_register(key=BOOSTSCORE, type=DATA); 14293 + 14294 + %em_register(key=EXPORTCODE, type=FILE, extension=sas); 14295 + %em_register(key=PRECODE, type=FILE, extension=sas); 14296 + 14297 + %em_variables(id=1, name=GROUPROLE, type=C, length=8, filter=%nrbquote(ROLE in('TARGET', 'SEGMENT', 'FREQ') or (LEVEL ^='INTERVAL')), default=DEFAULT); 14298 + %em_variables(id=1, group=GROUP, where=%nrbquote(ROLE='SEGMENT'), default=DEFAULT); 14299 + %em_variables(id=1, group=TARGET, where=%nrbquote(ROLE ^='SEGMENT'), default=DEFAULT); 14300 + 14301 + 14302 +%mend create; 14303 + 14304 + NOTE: %INCLUDE (level 1) ending. NOTE: Fileref TEMP has been deassigned. NOTE: The data set WORK.EM_USER_KEY has 1 observations and 9 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.EM_USER_KEY. NOTE: The data set WORK.EM_USER_KEY has 2 observations and 9 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.EM_USER_KEY. NOTE: The data set WORK.EM_USER_KEY has 3 observations and 9 variables. NOTE: Sentencia DATA used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3 observations read from the data set WORK.EM_USER_KEY. NOTE: The data set WORK.EM_USER_KEY has 4 observations and 9 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 4 observations read from the data set WORK.EM_USER_KEY. NOTE: The data set WORK.EM_USER_KEY has 5 observations and 9 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 5 observations read from the data set WORK.EM_USER_KEY. NOTE: The data set WORK.EM_USER_KEY has 6 observations and 9 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 6 observations read from the data set WORK.EM_USER_KEY. NOTE: The data set WORK.EM_USER_KEY has 7 observations and 9 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 7 observations read from the data set WORK.EM_USER_KEY. NOTE: The data set WORK.EM_USER_KEY has 8 observations and 9 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 8 observations read from the data set WORK.EM_USER_KEY. NOTE: The data set WORK.EM_USER_KEY has 9 observations and 9 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 9 observations read from the data set WORK.EM_USER_KEY. NOTE: The data set WORK.EM_USER_KEY has 10 observations and 9 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 1 ROLE in('TARGET', 'SEGMENT', 'FREQ') or (LEVEL ^='INTERVAL') GROUPROLE NOTE: The data set WORK.EM_USER_VARIABLES has 11 observations and 4 variables. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 1 NOTE: There were 11 observations read from the data set WORK.EM_USER_VARIABLES. NOTE: The data set WORK.EM_USER_VARIABLES has 22 observations and 4 variables. NOTE: Sentencia DATA used (Total process time): real time 0.01 seconds cpu time 0.00 seconds 1 NOTE: There were 22 observations read from the data set WORK.EM_USER_VARIABLES. NOTE: The data set WORK.EM_USER_VARIABLES has 33 observations and 4 variables. NOTE: Sentencia DATA used (Total process time): real time 0.01 seconds cpu time 0.00 seconds 14305 *------------------------------------------------------------*; 14306 * End CREATE: Grp; 14307 *------------------------------------------------------------*; 14308 14309 %let EM_MAXTARGET=; 14310 %let EM_MININPUT=; 14311 proc sort data=WORK.EM_USER_VARIABLES; 14312 by KEY ID; 14313 run; NOTE: There were 33 observations read from the data set WORK.EM_USER_VARIABLES. NOTE: The data set WORK.EM_USER_VARIABLES has 33 observations and 4 variables. NOTE: PROCEDIMIENTO SORT used (Total process time): real time 0.00 seconds cpu time 0.01 seconds attrlist=0 attrname=GROUPROLE attrlist=0 14314 filename _fref1 "C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\Grp_EMNOTES.txt" encoding="UTF-8" NOBOM; 14315 filename _fref2 "C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\Grp\EMNOTES.txt" encoding="UTF-8" NOBOM; 14316 %em_copyfile(infref=_fref1, outfref=_fref2); NOTE: The file _FREF2 is: Nombre archivo=C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\Grp\EMNOTES.txt, RECFM=V,LRECL=80000, Tamaño de archivo (bytes)=0, Última modificación=21 de mayo de 2019 10H25, Create Time=21 de mayo de 2019 10H25 NOTE: 0 records were written to the file _FREF2. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 14317 filename _fref1; NOTE: Fileref _FREF1 has been deassigned. 14318 filename _fref2; NOTE: Fileref _FREF2 has been deassigned. 14319 filename _fref1 "C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\Grp_USERTRAINCODE.sas"; 14320 filename _fref2 "C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\Grp\USERTRAINCODE.sas"; 14321 %em_copyfile(infref=_fref1, outfref=_fref2); NOTE: The file _FREF2 is: Nombre archivo=C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\Grp\USERTRAINCODE.sas, RECFM=V,LRECL=20000, Tamaño de archivo (bytes)=0, Última modificación=21 de mayo de 2019 10H25, Create Time=21 de mayo de 2019 10H25 NOTE: 0 records were written to the file _FREF2. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 14322 filename _fref1; NOTE: Fileref _FREF1 has been deassigned. 14323 filename _fref2; NOTE: Fileref _FREF2 has been deassigned. 1 1 14325 filename _notes 'C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\EndGrp\EMNOTES.txt' encoding="UTF-8" NOBOM; 14525 %let EMEXCEPTIONSTRING=; 14526 *------------------------------------------------------------*; 14527 * CREATE: EndGrp; 14528 *------------------------------------------------------------*; 14529 %let EM_ACTION = CREATE; 14530 %let syscc = 0; 14531 %macro main; 14532 %if %upcase(&EM_ACTION) = TRAIN %then %do; 14533 14534 filename temp catalog 'sashelp.emutil.endgp_train.source'; 14535 %include temp; 14536 filename temp; 14537 14538 %train; 14539 14540 %end; 14541 %else 14542 %if %upcase(&EM_ACTION) = SCORE %then %do; 14543 14544 filename temp catalog 'sashelp.emutil.endgp_score.source'; 14545 %include temp; 14546 filename temp; 14547 14548 %score; 14549 %end; 14550 %else 14551 %if %upcase(&EM_ACTION) = POSTLOOP %then %do; 14552 14553 filename temp catalog 'sashelp.emutil.endgp_postloop.source'; 14554 %include temp; 14555 filename temp; 14556 14557 %postloop; 14558 14559 %end; 14560 14561 %doendm: 14562 %mend main; 14563 14564 %main; 14565 *------------------------------------------------------------*; 14566 * End CREATE: EndGrp; 14567 *------------------------------------------------------------*; 14568 14569 filename _fref1 "C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EndGrp_EMNOTES.txt" encoding="UTF-8" NOBOM; 14570 filename _fref2 "C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\EndGrp\EMNOTES.txt" encoding="UTF-8" NOBOM; 14571 %em_copyfile(infref=_fref1, outfref=_fref2); NOTE: The file _FREF2 is: Nombre archivo=C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\EndGrp\EMNOTES.txt, RECFM=V,LRECL=80000, Tamaño de archivo (bytes)=0, Última modificación=21 de mayo de 2019 10H25, Create Time=21 de mayo de 2019 10H25 NOTE: 0 records were written to the file _FREF2. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 14572 filename _fref1; NOTE: Fileref _FREF1 has been deassigned. 14573 filename _fref2; NOTE: Fileref _FREF2 has been deassigned. 14574 filename _fref1 "C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EndGrp_USERTRAINCODE.sas"; 14575 filename _fref2 "C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\EndGrp\USERTRAINCODE.sas"; 14576 %em_copyfile(infref=_fref1, outfref=_fref2); NOTE: The file _FREF2 is: Nombre archivo=C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\EndGrp\USERTRAINCODE.sas, RECFM=V,LRECL=20000, Tamaño de archivo (bytes)=0, Última modificación=21 de mayo de 2019 10H25, Create Time=21 de mayo de 2019 10H25 NOTE: 0 records were written to the file _FREF2. NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 14577 filename _fref1; NOTE: Fileref _FREF1 has been deassigned. 14578 filename _fref2; NOTE: Fileref _FREF2 has been deassigned. 1 1 1 1 1 1 1 1 1 14580 %let EMPROJECTPATH = %bquote(C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject); 14581 %let EMPROJNAME = %nrstr(EmProject); 14582 %let EMPROJPATH = %nrstr(C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2); 14583 %let EMWSLIB = EMWS3; 14584 %let EMWSPATH = %bquote(C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3); 14585 %let EMREPORT = %bquote(C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Reports); 1 14587 %let EM_DEBUG =; 14588 options nodate nonumber pagesize=999 formdlim=' '; Sistema SAS 21094 %let EMPROJECTCODE = %nrstr(C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\System\STARTUP.sas); 21095 %let _EM_TREECONVERSION=0; 21096 data _null_; 21097 set EMWS3.EM_NODEID end=eof; 21098 where upcase(Component) ='DECISIONTREE' and CLASS = 'SASHELP.EMMODL.DECISIONTREE.CLASS'; 21099 if eof then call symput('_EM_TREECONVERSION', '1'); 21100 run; NOTE: There were 0 observations read from the data set EMWS3.EM_NODEID. WHERE (UPCASE(Component)='DECISIONTREE') and (CLASS='SASHELP.EMMODL.DECISIONTREE.CLASS'); NOTE: Sentencia DATA used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 1 1 1 21101 %let EMPATH = %bquote(C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3); 21102 %let EMPROJECTPATH = %bquote(C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject); 21103 options VBUFSIZE= 64M; 1 21104 %let EMUSERID = %bquote(); 21105 %let EM_JAVAPACKAGE = %bquote(); 21106 proc printto log="C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\System\run.log" new; 21107 run; 26068 data EMWS3.Ids_EMTRAINVARIABLE; 26069 length NAME $64 ROLE $ 32 LEVEL $ 10 ORDER $ 8 CREATOR $32 FORMATTYPE $ 10 FAMILY $ 10 LOWERLIMIT 8 UPPERLIMIT 8 REPORT $1 DISTRIBUTION $ 20 COMMENT $64; 26070 label NAME = "%sysfunc(sasmsg(sashelp.dmine, meta_name_vlabel, NOQUOTE))" ROLE = "%sysfunc(sasmsg(sashelp.dmine, meta_role_vlabel, NOQUOTE))" LEVEL = "%sysfunc(sasmsg(sashelp.dmine, meta_level_vlabel, NOQUOTE))" LABEL = 26071 "%sysfunc(sasmsg(sashelp.dmine, meta_label_vlabel, NOQUOTE))"; 26072 stop; 26073 run; NOTE: Variable NAME is uninitialized. NOTE: Variable ROLE is uninitialized. NOTE: Variable LEVEL is uninitialized. NOTE: Variable ORDER is uninitialized. NOTE: Variable CREATOR is uninitialized. NOTE: Variable FORMATTYPE is uninitialized. NOTE: Variable FAMILY is uninitialized. NOTE: Variable LOWERLIMIT is uninitialized. NOTE: Variable UPPERLIMIT is uninitialized. NOTE: Variable REPORT is uninitialized. NOTE: Variable DISTRIBUTION is uninitialized. NOTE: Variable COMMENT is uninitialized. NOTE: Variable LABEL is uninitialized. NOTE: The data set EMWS3.IDS_EMTRAINVARIABLE has 0 observations and 12 variables. NOTE: Sentencia DATA used (Total process time): real time 0.01 seconds cpu time 0.01 seconds *------------------------------------------------------------* * * Ids : End run * datetime : 21MAY2019:10:25:23 * *------------------------------------------------------------* 1 26078 proc printto; 26079 run; NOTE: PROCEDIMIENTO PRINTTO used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 1 1 1 26081 libname _hpdmDat "C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\HPDM"; NOTE: Libref _HPDMDAT was successfully assigned as follows: Engine: V9 Physical Name: C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3\HPDM 26082 libname _hpdmDat; NOTE: Libref _HPDMDAT has been deassigned. 26083 *------------------------------------------------------------*; 26084 * Deallocating librefs; 26085 *------------------------------------------------------------*; 26086 libname EMDS; NOTE: Libref EMDS has been deassigned. 26087 libname EMLDS; NOTE: Libref EMLDS has been deassigned. 26088 libname EMMETA; NOTE: Libref EMMETA has been deassigned. 26089 libname EMLMETA; NOTE: Libref EMLMETA has been deassigned. NOTE: PROCEDIMIENTO DISPLAY used (Total process time): real time 2.73 seconds cpu time 2.33 seconds projpath=C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2 wspath=C:\Users\...\AppData\Local\Temp\SEG8912\SAS Temporary Files\_TD6516_ITSN091_\Prc2\EmProject\Workspaces\EMWS3 wsname=EMWS3 NOTE: PROCEDIMIENTO DISPLAY used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 26090 26091 26092 GOPTIONS NOACCESSIBLE; 26093 %LET _CLIENTTASKLABEL=; 26094 %LET _CLIENTPROCESSFLOWNAME=; 26095 %LET _CLIENTPROJECTPATH=; 26096 %LET _CLIENTPROJECTPATHHOST=; 26097 %LET _CLIENTPROJECTNAME=; 26098 %LET _SASPROGRAMFILE=; 26099 %LET _SASPROGRAMFILEHOST=; 26100 26101 ;*';*";*/;quit;run; 26102 ODS _ALL_ CLOSE; 26103 26104 26105 QUIT; RUN; 26106