Sas Institute



1 The SAS System 11:40 Wednesday, November 18, 2015NOTE: Copyright (c) 2002-2008 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.2 (TS2M0) Licensed to UCB GLOBAL - 50 PC USERS (SUPP7) - 32BIT, Site 50600170.NOTE: This session is executing on the W32_VSPRO platform.NOTE: SAS initialization used: real time 1.49 seconds cpu time 0.32 seconds 1 proc datasets library=work kill; Directory Libref WORK Engine V9 Physical Name C:\Users\u052230\AppData\Local\Temp\SAS Temporary Files\_TD9344 Filename C:\Users\u052230\AppData\Local\Temp\SAS Temporary Files\_TD9344WARNING: No matching members in directory.2 run;3 quit;NOTE: PROCEDURE DATASETS used (Total process time): real time 0.03 seconds cpu time 0.03 seconds 4 5 ODS _ALL_ CLOSE;6 %macro GetTests (filepath=);7 8 PROC IMPORT OUT= WORK.resultsdata29 DATAFILE= "G:\Data Trending\3 Working\&filepath"10 DBMS=excel REPLACE;11 SHEET="Results";12 GETNAMES=YES;13 MIXED=YES;14 SCANTEXT=YES;15 USEDATE=YES;16 SCANTIME=YES;17 RUN;18 19 PROC IMPORT OUT= WORK.limitsdata20 DATAFILE= "G:\Data Trending\3 Working\&filepath"21 DBMS=excel REPLACE;22 SHEET="Limits";23 GETNAMES=YES;24 MIXED=YES;25 SCANTEXT=YES;26 USEDATE=YES;27 SCANTIME=YES;28 RUN;2 The SAS System 11:40 Wednesday, November 18, 201529 30 31 ods rtf close;32 ods graphics off;33 34 %mend GetTests;35 36 %macro BothSLChart (startdate=, test=, pos=, pos2=, format=);37 ods rtf startpage=now columns=1;38 39 data resultsdata;40 set resultsdata2;41 if &test='.' then delete;42 run;43 44 data resultsdata;45 set resultsdata nobs=obscount;46 if _n_ < (obscount - 99) then delete;47 run;48 49 /* timeline */50 data phases (keep=Lot_count _Lot_ _PHASE_);51 length _PHASE_ $26;52 set resultsdata;53 _PHASE_='Last 100 Lots with Results';54 run;55 56 data limits (rename=(underscore=_VAR_));57 set limitsdata;58 where translate(strip(_VAR_),'____',' ()/')="&test";59 underscore=translate(strip(_VAR_),'____',' ()/');60 drop _VAR_;61 run;62 63 data vref (keep=newvar _REF_ _REFLAB_ _CVREF_ rename=(newvar=_VAR_));64 set limits;65 where _VAR_="&test";66 newvar=strip(_VAR_);67 do i=1 to 2;68 if i=1 then do;69 _REF_=_LSL_;70 _REFLAB_='LSL';71 _CVREF_='red';72 output;73 end;74 if i=2 then do;75 _REF_=_USL_;76 _REFLAB_='USL';77 _CVREF_='red';78 output;79 end;80 end;81 drop _VAR_;3 The SAS System 11:40 Wednesday, November 18, 201582 run;83 84 /* run chart */85 proc shewhart data=resultsdata;86 irchart &test*Lot_count='*' / nochart nochart2 vref=vref /*outtable=data1*/86 ! outhistory=data1 zerostd;87 run;88 89 data data2;90 merge data1 phases;91 by Lot_count;92 _VAR_=strip("&test");93 run;94 95 data charts;96 merge data2 limits;97 by _VAR_;98 call symput('lsl',strip(_LSL_));99 call symput('usl',strip(_USL_));100 call symput('var',strip(_VAR_));101 call symput('units',strip(Units));102 call symput('LCL',strip(LCL));103 call symput('UCL',strip(UCL));104 call symput('Mean',strip(Mean));105 run;106 107 proc shewhart history=data2;108 irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats;109 run;110 111 data stats;112 set stats;113 _LCLI_=&LCL;114 _UCLI_=&UCL;115 _MEAN_=&Mean;116 run;117 118 proc shewhart history=data2 limits=stats;119 irchart &test*Lot_count='*' / /*outlabel=(Lot_count)*/ nochart2 vref=vref ciindices119 ! lsl=&lsl usl=&usl120 readphases=all phaselegend vreflabpos=2 zerostd tests=1 to 4 testlabel1=' '120 ! clipfactor=2 totpanels=1 /*outlimits=stats*/;121 label &var="&var (&units)";122 run;123 124 ods rtf columns=4;125 126 /**/data stats;127 set stats;128 call symput ('lcl',strip(_LCLI_));129 call symput ('ucl',strip(_UCLI_));130 run;131 4 The SAS System 11:40 Wednesday, November 18, 2015132 proc report data=charts nowindows style(column)={just=center};133 column Lot_Count _Lot_ &test;134 define Lot_Count / 'Count' display style(column)=[cellwidth=.5in];135 define _Lot_ / display;136 define &test / display format=&format /*style(column)=[foreground=OOS.]*/;137 compute &test;138 if &test > &ucl then call define(_row_, "style", "style=[backgroundcolor=orange]");139 if &test < &lcl then call define(_row_, "style", "style=[backgroundcolor=orange]");140 if &test < &lsl /*and ne '.' */then call define(_row_, "style",140 ! "style=[backgroundcolor=red]");141 if &test > &usl /*and ne '.' */then call define(_row_, "style",141 ! "style=[backgroundcolor=red]");142 if &test='.' then call define(_row_, "style", "style=[backgroundcolor=white]");143 endcomp;144 run;145 146 %mend BothSLChart;147 148 %macro LSLChart (startdate=, test=, pos=, pos2=, format=);149 ods rtf startpage=now columns=1;150 151 data resultsdata;152 set resultsdata2;153 if &test='.' then delete;154 run;155 156 data resultsdata;157 set resultsdata nobs=obscount;158 if _n_ < (obscount - 99) then delete;159 run;160 161 /* timeline */162 data phases (keep=Lot_count _Lot_ _PHASE_);163 length _PHASE_ $26;164 set resultsdata;165 _PHASE_='Last 100 Lots with Results';166 run;167 168 data limits (rename=(underscore=_VAR_));169 set limitsdata;170 where translate(strip(_VAR_),'____',' ()/')="&test";171 underscore=translate(strip(_VAR_),'____',' ()/');172 drop _VAR_;173 run;174 175 data vref (keep=newvar _REF_ _REFLAB_ _CVREF_ rename=(newvar=_VAR_));176 set limits;177 where _VAR_="&test";178 newvar=strip(_VAR_);179 do i=1 to 2;180 if i=1 then do;181 _REF_=_LSL_;182 _REFLAB_='LSL';5 The SAS System 11:40 Wednesday, November 18, 2015183 _CVREF_='red';184 output;185 end;186 if i=2 then do;187 _REF_=_USL_;188 _REFLAB_='USL';189 _CVREF_='red';190 output;191 end;192 end;193 drop _VAR_;194 run;195 196 /* run chart */197 proc shewhart data=resultsdata;198 irchart &test*Lot_Count='*' / nochart nochart2 vref=vref /*outtable=data1*/198 ! outhistory=data1 zerostd;199 run;200 201 data data2;202 merge data1 phases;203 by Lot_Count;204 _VAR_=strip("&test");205 run;206 207 data charts;208 merge data2 limits;209 by _VAR_;210 call symput('lsl',strip(_LSL_));211 call symput('usl',strip(_USL_));212 call symput('var',strip(_VAR_));213 call symput('units',strip(Units));214 call symput('LCL',strip(LCL));215 call symput('UCL',strip(UCL));216 call symput('Mean',strip(Mean));217 run;218 219 proc shewhart history=data2;220 irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats;221 run;222 223 data stats;224 set stats;225 _LCLI_=&LCL;226 _UCLI_=&UCL;227 _MEAN_=&Mean;228 run;229 230 /* Individuals Chart */231 proc shewhart history=data2 limits=stats;232 irchart &test*Lot_Count='*' / /*outlabel=(Lot_Count)*/ nochart2 vref=vref ciindices232 ! lsl=&lsl usl=&usl readphases=all phaselegend vreflabpos=2 zerostd tests=1 to 4232 ! testlabel1=' '6 The SAS System 11:40 Wednesday, November 18, 2015233 clipfactor=2 totpanels=1 zerostd;234 label &var="&var (&units)";235 run;236 237 ods rft columns=4;238 239 data stats;240 set stats;241 call symput ('lcl',strip(_LCLI_));242 call symput ('ucl',strip(_UCLI_));243 run;244 245 proc report data=charts nowindows style(column)={just=center};246 column Lot_Count _Lot_ &test;247 define Lot_Count / 'Count' display style(column)=[cellwidth=.5in];248 define _Lot_ / display;249 define &test / display format=&format /*style(column)=[foreground=OOS.]*/;250 compute &test;251 if &test < &lcl then call define(_row_, "style", "style=[backgroundcolor=orange]");252 if &test > &ucl then call define(_row_, "style", "style=[backgroundcolor=orange]");253 if &test < &lsl /*and ne '.' */then call define(_row_, "style",253 ! "style=[backgroundcolor=red]");254 if &test='.' then call define(_row_, "style", "style=[backgroundcolor=white]");255 endcomp;256 run;257 258 %mend LSLChart;259 260 %macro USLChart (startdate=, test=, pos=, pos2=, format=);261 ods rtf startpage=now columns=1;262 263 data resultsdata;264 set resultsdata2;265 if &test='.' then delete;266 run;267 268 data resultsdata;269 set resultsdata nobs=obscount;270 if _n_ < (obscount - 99) then delete;271 run;272 273 /* timeline */274 data phases (keep=Lot_count _Lot_ _PHASE_);275 length _PHASE_ $26;276 set resultsdata;277 _PHASE_='Last 100 Lots with Results';278 run;279 280 data limits (rename=(underscore=_VAR_));281 set limitsdata;282 where translate(strip(_VAR_),'____',' ()/')="&test";283 underscore=translate(strip(_VAR_),'____',' ()/');284 drop _VAR_;7 The SAS System 11:40 Wednesday, November 18, 2015285 run;286 287 data vref (keep=newvar _REF_ _REFLAB_ _CVREF_ rename=(newvar=_VAR_));288 set limits;289 where _VAR_="&test";290 newvar=strip(_VAR_);291 do i=1 to 2;292 if i=1 then do;293 _REF_=_LSL_;294 _REFLAB_='LSL';295 _CVREF_='red';296 output;297 end;298 if i=2 then do;299 _REF_=_USL_;300 _REFLAB_='USL';301 _CVREF_='red';302 output;303 end;304 end;305 drop _VAR_;306 run;307 308 proc shewhart data=resultsdata;309 irchart &test*Lot_Count='*' / nochart nochart2 vref=vref /*outtable=data1*/309 ! outhistory=data1 zerostd;310 run;311 312 data data2;313 merge data1 phases;314 by Lot_Count;315 _VAR_=strip("&test");316 run;317 318 data charts;319 merge data2 limits;320 by _VAR_;321 call symput('lsl',strip(_LSL_));322 call symput('usl',strip(_USL_));323 call symput('var',strip(_VAR_));324 call symput('units',strip(Units));325 call symput('LCL',strip(LCL));326 call symput('UCL',strip(UCL));327 call symput('Mean',strip(Mean));328 run;329 330 proc shewhart history=data2;331 irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;332 run;333 334 data stats;335 set stats;336 _LCLI_=&LCL;8 The SAS System 11:40 Wednesday, November 18, 2015337 _UCLI_=&UCL;338 _MEAN_=&Mean;339 if _LCLI_ < 0 then _LCLI_=0;340 run;341 342 /* Individuals Chart */343 proc shewhart history=data2 limits=stats;344 irchart &test*Lot_Count='*' / /*outlabel=(Lot_Count)*/ testlabel1=' ' nochart2344 ! vref=vref ciindices lsl=&lsl345 usl=&usl readphases=all phaselegend vreflabpos=2 zerostd clipfactor=2 tests=1 to 4345 ! totpanels=1 zerostd;346 label &var="&var (&units)";347 run;348 349 ods rtf columns=4;350 351 data stats;352 set stats;353 call symput ('lcl',strip(_LCLI_));354 call symput ('ucl',strip(_UCLI_));355 run;356 357 proc report data=charts nowindows style(column)={just=center};358 column Lot_Count _Lot_ &test;359 define Lot_Count / 'Count' display style(column)=[cellwidth=.5in];360 define _Lot_ / display;361 define &test / display format=&format /*style(column)=[foreground=OOS.]*/;362 compute &test;363 if &test > &ucl then call define(_row_, "style", "style=[backgroundcolor=orange]");364 if &test < &lcl then call define(_row_, "style", "style=[backgroundcolor=orange]");365 if &test > &usl /*and ne '.' */then call define(_row_, "style",365 ! "style=[backgroundcolor=red]");366 if &test='.' then call define(_row_, "style", "style=[backgroundcolor=white]");367 endcomp;368 run;369 370 %mend USLChart;371 372 %macro BothSLMeansChart (startdate=, test=, firstvar=, lastvar=, samplesize=,372 ! startlotcount=, pos=, pos2=, pos3=, format=);373 ods rtf startpage=now columns=1;374 375 data phases (keep=Lot_Count _Lot_ _PHASE_);376 length _PHASE_ $7;377 set resultsdata;378 if mfg_date < &startdate then _PHASE_='Prior';379 else if mfg_date >= &startdate then _PHASE_='Current';380 run;381 382 data limits (rename=(underscore=_VAR_));383 set limitsdata;384 replace=translate(strip(_VAR_),'____',' ()/');385 if scan(replace,1,'-')="&test" then do;9 The SAS System 11:40 Wednesday, November 18, 2015386 underscore="&test";387 drop _VAR_;388 output;389 end;390 run;391 392 data vref (keep=newvar _REF_ _REFLAB_ _CVREF_ rename=(newvar=_VAR_));393 set limits;394 where _VAR_="&test";395 newvar=strip(_VAR_);396 do i=1 to 2;397 if i=1 then do;398 _REF_=_LSL_;399 _REFLAB_='LSL';400 _CVREF_='red';401 output;402 end;403 if i=2 then do;404 _REF_=_USL_;405 _REFLAB_='USL';406 _CVREF_='red';407 output;408 end;409 end;410 drop _VAR_;411 run;412 413 data xchartdata (keep=Lot_Count subgroup unit &test);414 set resultsdata;415 array xdata{&samplesize} &firstvar-&lastvar;416 do i=1 to &samplesize;417 unit=i;418 subgroup+1;419 &test=xdata{i};420 output;421 end;422 run;423 424 proc shewhart data=xchartdata;425 xchart &test*Lot_Count='*' / nochart nochart2 vref=vref outhistory=data1;426 run;427 428 data data2;429 merge data1 phases;430 by Lot_Count;431 _VAR_=strip("&test");432 run;433 434 data charts;435 merge data2 limits;436 by _VAR_;437 call symput('lsl',strip(_LSL_));438 call symput('usl',strip(_USL_));10 The SAS System 11:40 Wednesday, November 18, 2015439 call symput('var',strip(_VAR_));440 call symput('units',strip(Units));441 run;442 443 data data3;444 merge xchartdata phases;445 by Lot_Count;446 _VAR_=strip("&test");447 run;448 449 /* Run Chart */450 proc sgplot data=xchartdata;451 footnote;452 scatter x=Lot_Count y=&test/group=unit;453 refline &lsl / axis=y lineattrs=(color=red) noclip label='LSL' labelloc=inside453 ! labelpos=min;454 refline &usl / axis=y lineattrs=(color=red) noclip label='USL' labelloc=inside454 ! labelpos=min;455 refline &startlotcount / axis=x label='Current' labelloc=inside labelpos=min;456 xaxis fitpolicy=rotatethin integer;457 label unit='Unit';458 run;459 460 /*Individual Measurements Chart*/461 proc shewhart data=data3;462 irchart &test*subgroup / testlabel1=' ' nochart2 vref=vref vreflabpos=2 ciindices462 ! lsl=&lsl usl=&usl463 readphases=all phaselegend zerostd clipfactor=2 tests=1 to 4 totpanels=1463 ! outlimits=stats;464 label &var="&var (&units)";465 run;466 467 /* Means Chart */468 proc shewhart history=data2;469 xchart &test*Lot_Count='*' / /*outlabel=(Lot_Count)*/ nochart2 vref=vref vreflabpos=2469 ! ciindices lsl=&lsl usl=&usl readphases=all phaselegend zerostd clipfactor=2 tests=1469 ! to 4 testlabel1=' '470 totpanels=1 zerostd;471 label &var="&var (&units)";472 run;473 474 ods rtf columns=1;475 476 proc report data=resultsdata nowindows style(column)={just=center};477 format &firstvar-&lastvar &format;478 column Lot_Count _Lot_ &firstvar-&lastvar;479 define Lot_Count / 'Count' display style(column)=[cellwidth=.5in];480 define _Lot_ / display;481 define &firstvar / displayt;482 define &lastvar / display;483 run;484 485 %mend BothSLMeansChart;11 The SAS System 11:40 Wednesday, November 18, 2015486 487 488 %macro ContentUniformity (startdate=, test=, firstvar=, lastvar=, samplesize=,488 ! startlotcount=, pos=, pos2=, pos3=, format=);489 ods rtf startpage=now columns=1;490 491 data resultsdata;492 set resultsdata2;493 if &firstvar='.' then delete;494 run;495 496 data resultsdata;497 set resultsdata nobs=obscount;498 if _n_ < (obscount - 99) then delete;499 run;500 501 /* timeline */502 data phases (keep=Lot_count _Lot_ _PHASE_);503 length _PHASE_ $26;504 set resultsdata;505 _PHASE_='Last 100 Lots with Results';506 run;507 508 data limits (rename=(underscore=_VAR_));509 set limitsdata;510 replace=translate(strip(_VAR_),'____',' ()/');511 if scan(replace,1,'-')="&test" then do;512 underscore="&test";513 drop _VAR_;514 output;515 end;516 run;517 518 data vref (keep=newvar _REF_ _REFLAB_ _CVREF_ rename=(newvar=_VAR_));519 set limits;520 where _VAR_="&test";521 newvar=strip(_VAR_);522 do i=1 to 2;523 if i=1 then do;524 _REF_=_LSL_;525 _REFLAB_='LSL';526 _CVREF_='red';527 output;528 end;529 if i=2 then do;530 _REF_=_USL_;531 _REFLAB_='USL';532 _CVREF_='red';533 output;534 end;535 end;536 drop _VAR_;537 run;12 The SAS System 11:40 Wednesday, November 18, 2015538 539 data xchartdata (keep=Lot_Count subgroup unit &test);540 set resultsdata;541 array xdata{&samplesize} &firstvar-&lastvar;542 do i=1 to &samplesize;543 unit=i;544 subgroup+1;545 &test=xdata{i};546 output;547 end;548 run;549 550 proc shewhart data=xchartdata;551 xchart &test*Lot_Count='*' / nochart nochart2 vref=vref outhistory=data1;552 run;553 554 data data2;555 merge data1 phases;556 by Lot_Count;557 _VAR_=strip("&test");558 run;559 560 data charts;561 merge data2 limits;562 by _VAR_;563 call symput('lsl',strip(_LSL_));564 call symput('usl',strip(_USL_));565 call symput('var',strip(_VAR_));566 call symput('units',strip(Units));567 call symput('LCL',strip(LCL));568 call symput('UCL',strip(UCL));569 call symput('Mean',strip(Mean));570 run;571 572 data data3;573 merge xchartdata phases;574 by Lot_Count;575 _VAR_=strip("&test");576 run;577 578 /* Run Chart */579 proc sgplot data=xchartdata;580 footnote;581 scatter x=Lot_Count y=&test/group=unit;582 refline &lsl / axis=y lineattrs=(color=red) noclip label='LSL' labelloc=inside582 ! labelpos=min;583 refline &usl / axis=y lineattrs=(color=red) noclip label='USL' labelloc=inside583 ! labelpos=min;584 refline &startlotcount / axis=x label='Current' labelloc=inside labelpos=min;585 xaxis fitpolicy=rotatethin integer;586 label unit='Unit';587 run;588 13 The SAS System 11:40 Wednesday, November 18, 2015589 proc shewhart data=data3;590 irchart &test*subgroup / nochart nochart2 outlimits=stats;591 run;592 593 data stats;594 set stats;595 _LCLI_=&LCL;596 _UCLI_=&UCL;597 _MEAN_=&Mean;598 run;599 600 /*Individual Measurements Chart*/601 proc shewhart data=data3;602 irchart &test*subgroup / testlabel1=' ' nochart2 vref=vref vreflabpos=2 ciindices602 ! lsl=&lsl usl=&usl603 readphases=all phaselegend zerostd clipfactor=2 tests=1 to 4 totpanels=1603 ! outlimits=stats;604 label &var="&var (&units)";605 run;606 607 /* Means Chart */608 proc shewhart history=data2;609 xchart &test*Lot_Count='*' / /*outlabel=(Lot_Count)*/ nochart2 vref=vref vreflabpos=2609 ! ciindices lsl=&lsl usl=&usl readphases=all phaselegend zerostd clipfactor=2 tests=1609 ! to 4 testlabel1=' '610 totpanels=1 zerostd;611 label &var="&var (&units)";612 run;613 614 ods rtf columns=1;615 616 proc report data=resultsdata nowindows style(column)={just=center};617 format &firstvar-&lastvar &format;618 column Lot_Count _Lot_ CU1 CU2 CU3 CU4 CU5 CU6 CU7 CU8 CU9 CU10;619 define Lot_Count / 'Count' display style(column)=[cellwidth=.5in];620 define _Lot_ / display;621 define CU1 / display;622 define CU2 / display;623 define CU3 / display;624 define CU4 / display;625 define CU5 / display;626 define CU6 / display;627 define CU7 / display;628 define CU8 / display;629 define CU9 / display;630 define CU10 / display;631 compute CU1;632 if CU1 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]");633 if CU1 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]");634 if CU1 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");635 if CU1='.' then call define(_col_, "style", "style=[backgroundcolor=white]");636 endcomp;637 compute CU2;14 The SAS System 11:40 Wednesday, November 18, 2015638 if CU2 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]");639 if CU2 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]");640 if CU2 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");641 if CU2='.' then call define(_col_, "style", "style=[backgroundcolor=white]");642 endcomp;643 compute CU3;644 if CU3 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]");645 if CU3 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]");646 if CU3 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");647 if CU3='.' then call define(_col_, "style", "style=[backgroundcolor=white]");648 endcomp;649 compute CU4;650 if CU4 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]");651 if CU4 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]");652 if CU4 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");653 if CU4='.' then call define(_col_, "style", "style=[backgroundcolor=white]");654 endcomp;655 compute CU5;656 if CU5 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]");657 if CU5 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]");658 if CU5 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");659 if CU5='.' then call define(_col_, "style", "style=[backgroundcolor=white]");660 endcomp;661 compute CU6;662 if CU6 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]");663 if CU6 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]");664 if CU6 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");665 if CU6='.' then call define(_col_, "style", "style=[backgroundcolor=white]");666 endcomp;667 compute CU7;668 if CU7 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]");669 if CU7 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]");670 if CU7 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");671 if CU7='.' then call define(_col_, "style", "style=[backgroundcolor=white]");672 endcomp;673 compute CU8;674 if CU8 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]");675 if CU8 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]");676 if CU8 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");677 if CU8='.' then call define(_col_, "style", "style=[backgroundcolor=white]");678 endcomp;679 compute CU9;680 if CU9 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]");681 if CU9 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]");682 if CU9 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");683 if CU9='.' then call define(_col_, "style", "style=[backgroundcolor=white]");684 endcomp;685 compute CU10;686 if CU10 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]");687 if CU10 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]");688 if CU10 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");689 if CU10='.' then call define(_col_, "style", "style=[backgroundcolor=white]");690 endcomp;15 The SAS System 11:40 Wednesday, November 18, 2015691 run;692 693 694 %mend ContentUniformity;695 696 %macro TabletLSLMeansChart (startdate=, test=, firstvar=, lastvar=, samplesize=,696 ! startlotcount=, pos=, pos2=, pos3=, format=);697 ods rtf startpage=now columns=1;698 699 data resultsdata;700 set resultsdata2;701 if &firstvar='.' then delete;702 run;703 704 data resultsdata;705 set resultsdata nobs=obscount;706 if _n_ < (obscount - 99) then delete;707 run;708 709 /* timeline */710 data phases (keep=Lot_count _Lot_ _PHASE_);711 length _PHASE_ $26;712 set resultsdata;713 _PHASE_='Last 100 Lots with Results';714 run;715 716 data limits (rename=(underscore=_VAR_));717 set limitsdata;718 replace=translate(strip(_VAR_),'____',' ()/');719 if scan(replace,1,'-')="&test" then do;720 underscore="&test";721 drop _VAR_;722 output;723 end;724 run;725 726 data vref (keep=newvar _REF_ _REFLAB_ _CVREF_ rename=(newvar=_VAR_));727 set limits;728 where _VAR_="&test";729 newvar=strip(_VAR_);730 do i=1 to 2;731 if i=1 then do;732 _REF_=_LSL_;733 _REFLAB_='LSL';734 _CVREF_='red';735 output;736 end;737 if i=2 then do;738 _REF_=_USL_;739 _REFLAB_='USL';740 _CVREF_='red';741 output;742 end;16 The SAS System 11:40 Wednesday, November 18, 2015743 end;744 drop _VAR_;745 run;746 747 data xchartdata (keep=Lot_Count subgroup unit &test);748 set resultsdata;749 array xdata{&samplesize} &firstvar-&lastvar;750 do i=1 to &samplesize;751 unit=i;752 subgroup+1;753 &test=xdata{i};754 output;755 end;756 run;757 758 759 proc shewhart data=xchartdata;760 xchart &test*Lot_Count='*' / nochart nochart2 vref=vref outhistory=data1;761 run;762 763 data data2;764 merge data1 phases;765 by Lot_Count;766 _VAR_=strip("&test");767 run;768 769 data charts;770 merge data2 limits;771 by _VAR_;772 call symput('lsl',strip(_LSL_));773 call symput('usl',strip(_USL_));774 call symput('var',strip(_VAR_));775 call symput('units',strip(Units));776 call symput('LCL',strip(LCL));777 call symput('UCL',strip(UCL));778 call symput('Mean',strip(Mean));779 run;780 781 data data3;782 merge xchartdata phases;783 by Lot_Count;784 _VAR_=strip("&test");785 run;786 787 proc sgplot data=xchartdata;788 footnote;789 scatter x=Lot_Count y=&test/group=unit;790 refline &lsl / axis=y lineattrs=(color=red) noclip label='LSL' labelloc=inside790 ! labelpos=min;791 refline &startlotcount / axis=x label='Current' labelloc=inside labelpos=min;792 xaxis fitpolicy=rotatethin integer;793 label unit='Unit';794 run;17 The SAS System 11:40 Wednesday, November 18, 2015795 796 proc shewhart data=data3;797 irchart &test*subgroup / nochart nochart2 outlimits=stats;798 run;799 800 data stats;801 set stats;802 _LCLI_=&LCL;803 _UCLI_=&UCL;804 _MEAN_=&Mean;805 run;806 807 /*Individual Measurements Chart*/808 proc shewhart data=data3 limits=stats;809 irchart &test*subgroup / testlabel1=' ' nochart2 vref=vref vreflabpos=2 ciindices809 ! lsl=&lsl usl=&usl810 readphases=all phaselegend zerostd clipfactor=2 tests=1 to 4 totpanels=1;811 label &var="&var (&units)";812 run;813 814 /* Means Chart*/815 proc shewhart history=data2;816 xchart &test*Lot_Count='*' / /*outlabel=(Lot_Count)*/ nochart2 vref=vref vreflabpos=2816 ! ciindices lsl=&lsl usl=&usl readphases=all phaselegend zerostd tests=1 to 4816 ! testlabel1=' '817 clipfactor=2 totpanels=1 zerostd;818 label &var="&var (&units)";819 run;820 821 ods rtf columns=1;822 823 proc report data=resultsdata nowindows style(column)={just=center};824 format &firstvar-&lastvar &format;825 column Lot_Count _Lot_ Dissolution_Vessel_1 Dissolution_Vessel_2 Dissolution_Vessel_3825 ! Dissolution_Vessel_4 Dissolution_Vessel_5 Dissolution_Vessel_6;826 define Lot_Count / 'Count' display style(column)=[cellwidth=.5in];827 define _Lot_ / display;828 define Dissolution_Vessel_1 / display;829 define Dissolution_Vessel_2 / display;830 define Dissolution_Vessel_3 / display;831 define Dissolution_Vessel_4 / display;832 define Dissolution_Vessel_5 / display;833 define Dissolution_Vessel_6 / display;834 compute Dissolution_Vessel_1;835 if Dissolution_Vessel_1 < &lcl then call define(_col_, "style",835 ! "style=[backgroundcolor=orange]");836 if Dissolution_Vessel_1 > &ucl then call define(_col_, "style",836 ! "style=[backgroundcolor=orange]");837 if Dissolution_Vessel_1 < &lsl then call define(_col_, "style",837 ! "style=[backgroundcolor=red]");838 if Dissolution_Vessel_1='.' then call define(_col_, "style",838 ! "style=[backgroundcolor=white]");839 endcomp;18 The SAS System 11:40 Wednesday, November 18, 2015840 compute Dissolution_Vessel_2;841 if Dissolution_Vessel_2 < &lcl then call define(_col_, "style",841 ! "style=[backgroundcolor=orange]");842 if Dissolution_Vessel_2 > &ucl then call define(_col_, "style",842 ! "style=[backgroundcolor=orange]");843 if Dissolution_Vessel_2 < &lsl then call define(_col_, "style",843 ! "style=[backgroundcolor=red]");844 if Dissolution_Vessel_2='.' then call define(_col_, "style",844 ! "style=[backgroundcolor=white]");845 endcomp;846 compute Dissolution_Vessel_3;847 if Dissolution_Vessel_3 < &lcl then call define(_col_, "style",847 ! "style=[backgroundcolor=orange]");848 if Dissolution_Vessel_3 > &ucl then call define(_col_, "style",848 ! "style=[backgroundcolor=orange]");849 if Dissolution_Vessel_3 < &lsl then call define(_col_, "style",849 ! "style=[backgroundcolor=red]");850 if Dissolution_Vessel_3='.' then call define(_col_, "style",850 ! "style=[backgroundcolor=white]");851 endcomp;852 compute Dissolution_Vessel_4;853 if Dissolution_Vessel_4 < &lcl then call define(_col_, "style",853 ! "style=[backgroundcolor=orange]");854 if Dissolution_Vessel_4 > &ucl then call define(_col_, "style",854 ! "style=[backgroundcolor=orange]");855 if Dissolution_Vessel_4 < &lsl then call define(_col_, "style",855 ! "style=[backgroundcolor=red]");856 if Dissolution_Vessel_4='.' then call define(_col_, "style",856 ! "style=[backgroundcolor=white]");857 endcomp;858 compute Dissolution_Vessel_5;859 if Dissolution_Vessel_5 < &lcl then call define(_col_, "style",859 ! "style=[backgroundcolor=orange]");860 if Dissolution_Vessel_5 > &ucl then call define(_col_, "style",860 ! "style=[backgroundcolor=orange]");861 if Dissolution_Vessel_5 < &lsl then call define(_col_, "style",861 ! "style=[backgroundcolor=red]");862 if Dissolution_Vessel_5='.' then call define(_col_, "style",862 ! "style=[backgroundcolor=white]");863 endcomp;864 compute Dissolution_Vessel_6;865 if Dissolution_Vessel_6 < &lcl then call define(_col_, "style",865 ! "style=[backgroundcolor=orange]");866 if Dissolution_Vessel_6 > &ucl then call define(_col_, "style",866 ! "style=[backgroundcolor=orange]");867 if Dissolution_Vessel_6 < &lsl then call define(_col_, "style",867 ! "style=[backgroundcolor=red]");868 if Dissolution_Vessel_6='.' then call define(_col_, "style",868 ! "style=[backgroundcolor=white]");869 endcomp;870 run;871 872 19 The SAS System 11:40 Wednesday, November 18, 2015873 %mend TabletLSLMeansChart;874 875 %macro CapsuleLSLMeansChart (startdate=, test=, firstvar=, lastvar=, samplesize=,875 ! startlotcount=, pos=, pos2=, pos3=, format=);876 ods rtf startpage=now columns=1;877 878 data resultsdata;879 set resultsdata2;880 if &firstvar='.' then delete;881 run;882 883 data resultsdata;884 set resultsdata nobs=obscount;885 if _n_ < (obscount - 99) then delete;886 run;887 888 /* timeline */889 data phases (keep=Lot_count _Lot_ _PHASE_);890 length _PHASE_ $26;891 set resultsdata;892 _PHASE_='Last 100 Lots with Results';893 run;894 895 data limits (rename=(underscore=_VAR_));896 set limitsdata;897 replace=translate(strip(_VAR_),'____',' ()/');898 if scan(replace,1,'-')="&test" then do;899 underscore="&test";900 drop _VAR_;901 output;902 end;903 run;904 905 data vref (keep=newvar _REF_ _REFLAB_ _CVREF_ rename=(newvar=_VAR_));906 set limits;907 where _VAR_="&test";908 newvar=strip(_VAR_);909 do i=1 to 2;910 if i=1 then do;911 _REF_=_LSL_;912 _REFLAB_='LSL';913 _CVREF_='red';914 output;915 end;916 if i=2 then do;917 _REF_=_USL_;918 _REFLAB_='USL';919 _CVREF_='red';920 output;921 end;922 end;923 drop _VAR_;924 run;20 The SAS System 11:40 Wednesday, November 18, 2015925 926 data xchartdata (keep=Lot_Count subgroup unit &test);927 set resultsdata;928 array xdata{&samplesize} &firstvar-&lastvar;929 do i=1 to &samplesize;930 unit=i;931 subgroup+1;932 &test=xdata{i};933 output;934 end;935 run;936 937 938 proc shewhart data=xchartdata;939 xchart &test*Lot_Count='*' / nochart nochart2 vref=vref outhistory=data1;940 run;941 942 data data2;943 merge data1 phases;944 by Lot_Count;945 _VAR_=strip("&test");946 run;947 948 data charts;949 merge data2 limits;950 by _VAR_;951 call symput('lsl',strip(_LSL_));952 call symput('usl',strip(_USL_));953 call symput('var',strip(_VAR_));954 call symput('units',strip(Units));955 call symput('LCL',strip(LCL));956 call symput('UCL',strip(UCL));957 call symput('Mean',strip(Mean));958 run;959 960 data data3;961 merge xchartdata phases;962 by Lot_Count;963 _VAR_=strip("&test");964 run;965 966 proc sgplot data=xchartdata;967 footnote;968 scatter x=Lot_Count y=&test/group=unit;969 refline &lsl / axis=y lineattrs=(color=red) noclip label='LSL' labelloc=inside969 ! labelpos=min;970 refline &startlotcount / axis=x label='Current' labelloc=inside labelpos=min;971 xaxis fitpolicy=rotatethin integer;972 label unit='Unit';973 run;974 975 proc shewhart data=data3;976 irchart &test*subgroup / nochart nochart2 outlimits=stats;21 The SAS System 11:40 Wednesday, November 18, 2015977 run;978 979 data stats;980 set stats;981 _LCLI_=&LCL;982 _UCLI_=&UCL;983 _MEAN_=&Mean;984 run;985 986 /*Individual Measurements Chart*/987 proc shewhart data=data3 limits=stats;988 irchart &test*subgroup / testlabel1=' ' nochart2 vref=vref vreflabpos=2 ciindices988 ! lsl=&lsl usl=&usl989 readphases=all phaselegend zerostd clipfactor=2 tests=1 to 4 totpanels=1;990 label &var="&var (&units)";991 run;992 993 /* Means Chart*/994 proc shewhart history=data2;995 xchart &test*Lot_Count='*' / /*outlabel=(Lot_Count)*/ nochart2 vref=vref vreflabpos=2995 ! ciindices lsl=&lsl usl=&usl readphases=all phaselegend zerostd tests=1 to 4995 ! testlabel1=' '996 clipfactor=2 totpanels=1 zerostd;997 label &var="&var (&units)";998 run;999 1000 ods rtf columns=1;1001 1002 proc report data=resultsdata nowindows style(column)={just=center};1003 format &firstvar-&lastvar &format;1004 column Lot_Count _Lot_ Capsule_Vessel_1 Capsule_Vessel_2 Capsule_Vessel_31004 ! Capsule_Vessel_4 Capsule_Vessel_5 Capsule_Vessel_6;1005 define Lot_Count / 'Count' display style(column)=[cellwidth=.5in];1006 define _Lot_ / display;1007 define Capsule_Vessel_1 / display;1008 define Capsule_Vessel_2 / display;1009 define Capsule_Vessel_3 / display;1010 define Capsule_Vessel_4 / display;1011 define Capsule_Vessel_5 / display;1012 define Capsule_Vessel_6 / display;1013 compute Capsule_Vessel_1;1014 if Capsule_Vessel_1 < &lcl then call define(_col_, "style",1014 ! "style=[backgroundcolor=orange]");1015 if Capsule_Vessel_1 > &ucl then call define(_col_, "style",1015 ! "style=[backgroundcolor=orange]");1016 if Capsule_Vessel_1 < &lsl then call define(_col_, "style",1016 ! "style=[backgroundcolor=red]");1017 if Capsule_Vessel_1='.' then call define(_col_, "style",1017 ! "style=[backgroundcolor=white]");1018 endcomp;1019 compute Capsule_Vessel_2;1020 if Capsule_Vessel_2 < &lcl then call define(_col_, "style",1020 ! "style=[backgroundcolor=orange]");22 The SAS System 11:40 Wednesday, November 18, 20151021 if Capsule_Vessel_2 > &ucl then call define(_col_, "style",1021 ! "style=[backgroundcolor=orange]");1022 if Capsule_Vessel_2 < &lsl then call define(_col_, "style",1022 ! "style=[backgroundcolor=red]");1023 if Capsule_Vessel_2='.' then call define(_col_, "style",1023 ! "style=[backgroundcolor=white]");1024 endcomp;1025 compute Capsule_Vessel_3;1026 if Capsule_Vessel_3 < &lcl then call define(_col_, "style",1026 ! "style=[backgroundcolor=orange]");1027 if Capsule_Vessel_3 > &ucl then call define(_col_, "style",1027 ! "style=[backgroundcolor=orange]");1028 if Capsule_Vessel_3 < &lsl then call define(_col_, "style",1028 ! "style=[backgroundcolor=red]");1029 if Capsule_Vessel_3='.' then call define(_col_, "style",1029 ! "style=[backgroundcolor=white]");1030 endcomp;1031 compute Capsule_Vessel_4;1032 if Capsule_Vessel_4 < &lcl then call define(_col_, "style",1032 ! "style=[backgroundcolor=orange]");1033 if Capsule_Vessel_4 > &ucl then call define(_col_, "style",1033 ! "style=[backgroundcolor=orange]");1034 if Capsule_Vessel_4 < &lsl then call define(_col_, "style",1034 ! "style=[backgroundcolor=red]");1035 if Capsule_Vessel_4='.' then call define(_col_, "style",1035 ! "style=[backgroundcolor=white]");1036 endcomp;1037 compute Capsule_Vessel_5;1038 if Capsule_Vessel_5 < &lcl then call define(_col_, "style",1038 ! "style=[backgroundcolor=orange]");1039 if Capsule_Vessel_5 > &ucl then call define(_col_, "style",1039 ! "style=[backgroundcolor=orange]");1040 if Capsule_Vessel_5 < &lsl then call define(_col_, "style",1040 ! "style=[backgroundcolor=red]");1041 if Capsule_Vessel_5='.' then call define(_col_, "style",1041 ! "style=[backgroundcolor=white]");1042 endcomp;1043 compute Capsule_Vessel_6;1044 if Capsule_Vessel_6 < &lcl then call define(_col_, "style",1044 ! "style=[backgroundcolor=orange]");1045 if Capsule_Vessel_6 > &ucl then call define(_col_, "style",1045 ! "style=[backgroundcolor=orange]");1046 if Capsule_Vessel_6 < &lsl then call define(_col_, "style",1046 ! "style=[backgroundcolor=red]");1047 if Capsule_Vessel_6='.' then call define(_col_, "style",1047 ! "style=[backgroundcolor=white]");1048 endcomp;1049 run;1050 1051 %mend CapsuleLSLMeansChart;1052 1053 %macro USLMeansChart (startdate=, test=, firstvar=, lastvar=, samplesize=,1053 ! startlotcount=, pos=, pos2=, pos3=, format=);23 The SAS System 11:40 Wednesday, November 18, 20151054 ods rtf startpage=now columns=1;1055 1056 data phases (keep=Lot_Count _Lot_ _PHASE_);1057 length _PHASE_ $7;1058 set resultsdata;1059 if mfg_date < &startdate then _PHASE_='Prior';1060 else if mfg_date >= &startdate then _PHASE_='Current';1061 run;1062 1063 data limits (rename=(underscore=_VAR_));1064 set limitsdata;1065 replace=translate(strip(_VAR_),'____',' ()/');1066 if scan(replace,1,'-')="&test" then do;1067 underscore="&test";1068 drop _VAR_;1069 output;1070 end;1071 run;1072 1073 data vref (keep=newvar _REF_ _REFLAB_ _CVREF_ rename=(newvar=_VAR_));1074 set limits;1075 where _VAR_="&test";1076 newvar=strip(_VAR_);1077 do i=1 to 2;1078 if i=1 then do;1079 _REF_=_LSL_;1080 _REFLAB_='LSL';1081 _CVREF_='red';1082 output;1083 end;1084 if i=2 then do;1085 _REF_=_USL_;1086 _REFLAB_='USL';1087 _CVREF_='red';1088 output;1089 end;1090 end;1091 drop _VAR_;1092 run;1093 1094 data xchartdata (keep=Lot_Count subgroup unit &test);1095 set resultsdata;1096 array xdata{&samplesize} &firstvar-&lastvar;1097 do i=1 to &samplesize;1098 unit=i;1099 subgroup+1;1100 &test=xdata{i};1101 output;1102 end;1103 run;1104 1105 proc shewhart data=xchartdata;1106 xchart &test*Lot_Count='*' / nochart nochart2 vref=vref outhistory=data1;24 The SAS System 11:40 Wednesday, November 18, 20151107 run;1108 1109 data data2;1110 merge data1 phases;1111 by Lot_Count;1112 _VAR_=strip("&test");1113 run;1114 1115 data charts;1116 merge data2 limits;1117 by _VAR_;1118 call symput('lsl',strip(_LSL_));1119 call symput('usl',strip(_USL_));1120 call symput('var',strip(_VAR_));1121 call symput('units',strip(Units));1122 run;1123 1124 data data3;1125 merge xchartdata phases;1126 by Lot_Count;1127 _VAR_=strip("&test");1128 run;1129 1130 proc sgplot data=xchartdata;1131 footnote;1132 scatter x=Lot_Count y=&test/group=unit;1133 refline &usl / axis=y lineattrs=(color=red) noclip label='USL' labelloc=inside1133 ! labelpos=min;1134 refline &startlotcount / axis=x label='Current' labelloc=inside labelpos=min;1135 xaxis fitpolicy=rotatethin integer;1136 label unit='Unit';1137 run;1138 1139 /*Individual Measurements Chart*/1140 proc shewhart data=data3;1141 irchart &test*subgroup / testlabel1=' ' nochart2 vref=vref vreflabpos=2 ciindices1141 ! lsl=&lsl usl=&usl1142 /* Current/Prior timeframe on top of chart*/ readphases=all phaselegend zerostd1142 ! clipfactor=2 tests=1 to 4 totpanels=1;1143 /*Cpk Estimates */1144 label &var="&var (&units)";1145 run;1146 1147 1148 /*Means Chart */1149 proc shewhart history=data2;1150 xchart &test*Lot_Count='*' / /*outlabel=(Lot_Count)*/ nochart2 vref=vref vreflabpos=21150 ! ciindices lsl=&lsl usl=&usl readphases=all phaselegend zerostd tests=1 to 41150 ! testlabel1=' '1151 clipfactor=2 totpanels=1;1152 label &var="&var (&units)";1153 run;1154 25 The SAS System 11:40 Wednesday, November 18, 20151155 ods rtf columns=1;1156 1157 proc report data=resultsdata nowindows style(column)={just=center};1158 format &firstvar-&lastvar &format;1159 column Lot_Count _Lot_ &firstvar-&lastvar;1160 define Lot_Count / 'Count' display style(column)=[cellwidth=.5in];1161 define _Lot_ / display;1162 define &firstvar / display;1163 define &lastvar / display;1164 run;1165 1166 %mend USLMeansChart;1167 1168 %macro USL2Chart (startdate=, test=, format=);1169 ods rtf startpage=now columns=1;1170 1171 data resultsdata;1172 set resultsdata2;1173 if &test='.' then delete;1174 run;1175 1176 data resultsdata;1177 set resultsdata nobs=obscount;1178 if _n_ < (obscount - 99) then delete;1179 run;1180 1181 /* timeline */1182 data phases (keep=Lot_count _Lot_ _PHASE_);1183 length _PHASE_ $26;1184 set resultsdata;1185 _PHASE_='Last 100 Lots with Results';1186 run;1187 1188 data limits (rename=(underscore=_VAR_));1189 set limitsdata;1190 where translate(strip(_VAR_),'____',' ()/')="&test";1191 underscore=translate(strip(_VAR_),'____',' ()/');1192 drop _VAR_;1193 run;1194 1195 data vref (keep=newvar _REF_ _REFLAB_ _CVREF_ rename=(newvar=_VAR_));1196 set limits;1197 where _VAR_="&test";1198 newvar=strip(_VAR_);1199 do i=1 to 2;1200 if i=1 then do;1201 _REF_=_LSL_;1202 _REFLAB_='LSL';1203 _CVREF_='red';1204 output;1205 end;1206 if i=2 then do;1207 _REF_=_USL_;26 The SAS System 11:40 Wednesday, November 18, 20151208 _REFLAB_='USL';1209 _CVREF_='red';1210 output;1211 end;1212 end;1213 drop _VAR_;1214 run;1215 1216 proc shewhart data=resultsdata;1217 irchart &test*Lot_Count='*' / nochart nochart2 vref=vref /*outtable=data1*/1217 ! outhistory=data1;1218 run;1219 1220 data data2;1221 merge data1 phases;1222 by Lot_Count;1223 _VAR_=strip("&test");1224 run;1225 1226 data charts;1227 merge data2 limits;1228 by _VAR_;1229 call symput('lsl',strip(_LSL_));1230 call symput('usl',strip(_USL_));1231 call symput('var',strip(_VAR_));1232 call symput('units',strip(Units));1233 run;1234 1235 proc shewhart history=data2;1236 irchart &test*Lot_Count='*' / nochart2 vref=vref ciindices lsl=&lsl usl=&usl1236 ! readphases=all phaselegend vreflabpos=2 nolcl noucl noctl zerostd nolimitslegend1236 ! totpanels=1;1237 /*1238 inset stddev cpklcl='Cpk 95% Lower' cpk='Cpk' cpkucl='Cpk 95% Upper';1239 */1240 label &var="&var (&units)";1241 run;1242 1243 ods rtf startpage=now columns=3;1244 1245 proc report data=resultsdata nowindows style(column)={just=center};1246 column Lot_Count _Lot_ &test;1247 define Lot_Count / 'Count' display style(column)=[cellwidth=.5in];1248 define _Lot_ / display;1249 define &test / display format=&format;1250 run;1251 1252 %mend USL2Chart;1253 1254 %macro AQRChartsFile (filepath=, productnumber=, productname=, startdate=, enddate=);1255 1256 data _NULL_;1257 start=put(&startdate,date9.);27 The SAS System 11:40 Wednesday, November 18, 20151258 end=put(&enddate,date9.);1259 call symput('s',start);1260 call symput('e',end);1261 run;1262 1263 ods graphics on / reset=all width=10in height=6in;1264 options nonumber nodate orientation=landscape topmargin=1in bottommargin=0.25in1264 ! rightmargin=0.25in leftmargin=0.25in;1265 ods rtf file="G:\Data Trending\3 Working\&filepath\Omeprazole 20 mg Charts.rtf"1266 style=statistical nogtitle startpage=no /* columns=1 for charts and columns=3 for1266 ! datatables*/;1267 ODS ESCAPECHAR='^';1268 title justify=left "^S={preimage='G:\QA\Product Compliance\Product1268 ! Compliance\AQRs\Templates\KU Logo.jpg'}"1269 justify=center "Annual Quality Review, &sysdate: Production and QC Data,1269 ! &productname, Item Code &productnumber, Dates of Review: &s – &e"1270 /*justify=right "Page ^{pageof}"*/;1271 title1 "&productname, &sysdate";1272 1273 %USLChart (startdate='15Aug2013'd, test=LOD_1, pos=nw, pos2=nw, format=6.1)1274 %USLChart (startdate='15Aug2013'd, test=LOD_2, pos=s, pos2=nw, format=6.1)1275 %BothSLChart (startdate='15Aug2013'd, test=Granulation_Yield, pos=sw, pos2=nw,1275 ! format=6.1)1276 %BothSLChart (startdate='15Aug2013'd, test=Granulation_Accountability, pos=sw,1276 ! pos2=nw, format=6.1)1277 %BothSLChart (startdate='15Aug2013'd, test=Compression_Yield, pos=sw, pos2=nw,1277 ! format=6.1)1278 %BothSLChart (startdate='15Aug2013'd, test=Compression_Accountability, pos=nw,1278 ! pos2=nw, format=6.1)1279 %BothSLChart (startdate='15Aug2013'd, test=Coating_Yield, pos=nw, pos2=nw,1279 ! format=6.1)1280 %BothSLChart (startdate='15Aug2013'd, test=Coating_Accountability, pos=nw, pos2=nw,1280 ! format=6.1)1281 %BothSLChart (startdate='15Aug2013'd, test=Weight_Sorting_Yield, pos=sw, pos2=nw,1281 ! format=6.1)1282 %BothSLChart (startdate='15Aug2013'd, test=Weight_Sorting_Accountability, pos=nw,1282 ! pos2=nw, format=6.1)1283 %BothSLChart (startdate='15Aug2013'd, test=Blend_Assay_mg, pos=nw, pos2=nw,1283 ! format=6.1)1284 %BothSLChart (startdate='15Aug2013'd, test=Blend_Assay_Percent, pos=nw, pos2=nw,1284 ! format=6.1)1285 %BothSLChart (startdate='15Aug2013'd, test=BU_Average_mg, pos=nw, pos2=nw,1285 ! format=6.1)1286 %BothSLChart (startdate='15Aug2013'd, test=BU_Average_Percent, pos=nw, pos2=nw,1286 ! format=6.1)1287 %USLChart (startdate='15Aug2013'd, test=BU_RSD, format=6.1, pos=nw, pos2=nw)1288 %LSLChart (startdate='15Aug2013'd, test=Particle_Size_100_Mesh, pos=nw, pos2=nw,1288 ! format=6.0)1289 %BothSLChart (startdate='15Aug2013'd, test=Particle_Size_30_Mesh, pos=nw, pos2=nw,1289 ! format=6.0)1290 %USLChart (startdate='15Aug2013'd, test=Particle_Size_20_Mesh, pos=nw, pos2=ne,1290 ! format=6.0)1291 %BothSLChart (startdate='15Aug2013'd, test=Bulk_Density, pos=sw, pos2=nw, format=6.2)28 The SAS System 11:40 Wednesday, November 18, 20151292 %BothSLChart (startdate='15Aug2013'd, test=Tap_Density, pos=sw, pos2=nw, format=6.2)1293 %BothSLChart (startdate='15Aug2013'd, test=Microtablet_Assay, pos=nw, pos2=nw,1293 ! format=6.1)1294 %TabletLSLMeansChart (startdate='15Aug2013'd, test=Microtablet_Dissolution_S1,1294 ! firstvar=Dissolution_Vessel_1, lastvar=Dissolution_Vessel_6, samplesize=6,1294 ! startlotcount=3829, pos=nw, pos2=nw, pos3=nw, format=6.0)1295 %BothSLChart (startdate='15Aug2013'd, test=Capsule_Assay, pos=nw, pos2=nw,1295 ! format=6.1)1296 %ContentUniformity (startdate='15Aug2013'd, test=Content_Uniformity_S1, firstvar=CU1,1296 ! lastvar=CU10, samplesize=10, startlotcount=187, pos=nw, pos2=nw, pos3=nw,1296 ! format=6.2)1297 %USLChart (startdate='15Aug2013'd, test=CU_AV, format=6.1, pos=nw, pos2=nw)1298 %CapsuleLSLMeansChart (startdate='15Aug2013'd, test=Capsule_Dissolution_S1,1298 ! firstvar=Capsule_Vessel_1, lastvar=Capsule_Vessel_6, samplesize=6,1298 ! startlotcount=3829, pos=sw, pos2=nw, pos3=nw, format=6.0)1299 %USLChart (startdate='15Aug2013'd, test=Acid_Resistance_S1_Average, pos=nw, pos2=n,1299 ! format=6.0)1300 %USLChart (startdate='15Aug2013'd, test=Impurity_A, format=6.2, pos=nw, pos2=n)1301 %USLChart (startdate='15Aug2013'd, test=Impurity_B, format=6.2, pos=nw, pos2=n)1302 %USLChart (startdate='15Aug2013'd, test=Impurity_C, format=6.2, pos=nw, pos2=n)1303 %USLChart (startdate='15Aug2013'd, test=Impurity_D, format=6.2, pos=nw, pos2=n)1304 %USLChart (startdate='15Aug2013'd, test=Impurities_E_F, format=6.2, pos=nw, pos2=n)1305 %USLChart (startdate='15Aug2013'd, test=Impurity_G, format=6.2, pos=nw, pos2=n)1306 %USLChart (startdate='15Aug2013'd, test=Impurity_H, format=6.2, pos=nw, pos2=n)1307 %USLChart (startdate='15Aug2013'd, test=Impurity_I, format=6.2, pos=nw, pos2=n)1308 %USLChart (startdate='15Aug2013'd, test=Total_Impurities, format=6.2, pos=nw,1308 ! pos2=ne)1309 1310 1311 ods rtf close;1312 ods graphics off;1313 1314 %mend AQRChartsFile;1315 1316 %GetTests (filepath=Omeprazole Prototype\P-118 Omeprazole Capsules1316 ! (Prototype).01.xlsm)1 The SAS System 11:40 Wednesday, November 18, 2015NOTE: Data source is connected in READ ONLY mode.NOTE: WORK.RESULTSDATA2 data set was successfully created.NOTE: PROCEDURE IMPORT used (Total process time): real time 4.12 seconds cpu time 4.27 seconds 1 The SAS System 11:40 Wednesday, November 18, 2015NOTE: Data source is connected in READ ONLY mode.NOTE: WORK.LIMITSDATA data set was successfully created.NOTE: PROCEDURE IMPORT used (Total process time): real time 0.96 seconds cpu time 0.25 seconds 1317 1318 %AQRChartsFile (filepath=Omeprazole Prototype, productnumber=118,1318 ! productname=Omeprazole 20 mg, startdate='01Nov2013'd, enddate='31Oct2014'd)29 The SAS System 11:40 Wednesday, November 18, 2015NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Writing RTF Body file: G:\Data Trending\3 Working\Omeprazole Prototype\Omeprazole 20 mg Charts.rtfNOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 1395:82 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4180 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 4180 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='LOD_1'; The SAS SystemNOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='LOD_1';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable LOD_1 moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.11 seconds cpu time 0.03 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds The SAS System cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable LOD_1 moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS SystemWARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable LOD_1 moving ranges are based on 2 consecutive values.NOTE: Test 2 was positive for process variable LOD_1 at Lot_Count = 4133.NOTE: Test 2 was positive for process variable LOD_1 at Lot_Count = 4147.NOTE: 0 point(s) clipped in the primary chart for LOD_1.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 6.41 seconds cpu time 1.40 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:45 1318:80 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). The SAS System 4:11 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 1459:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 1591 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1591 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='LOD_2'; The SAS SystemNOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='LOD_2';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable LOD_2 moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds The SAS System cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable LOD_2 moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds The SAS SystemWARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable LOD_2 moving ranges are based on 2 consecutive values.NOTE: Test 2 was positive for process variable LOD_2 at Lot_Count = 4132.NOTE: 0 point(s) clipped in the primary chart for LOD_2.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.53 seconds cpu time 0.82 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:45 1318:80 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 4:11 The SAS SystemNOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.04 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 1523:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4180 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 4180 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Granulation_Yield';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables. The SAS SystemNOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Granulation_Yield';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Granulation_Yield moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.04 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS System NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Granulation_Yield moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds The SAS SystemWARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Granulation_Yield moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Granulation_Yield at Lot_Count = 4131.NOTE: 0 point(s) clipped in the primary chart for Granulation_Yield.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.75 seconds cpu time 0.92 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:23 NOTE: There were 100 observations read from the data set WORK.CHARTS. The SAS SystemNOTE: PROCEDURE REPORT used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 1589:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4180 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 4180 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Granulation_Accountability';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): The SAS System real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Granulation_Accountability';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Granulation_Accountability moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.04 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds The SAS SystemNOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Granulation_Accountability moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS SystemWARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Granulation_Accountability moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Granulation_Accountability at Lot_Count = 4131.NOTE: 0 point(s) clipped in the primary chart for Granulation_Accountability.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.91 seconds cpu time 0.85 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:32 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): The SAS System real time 0.04 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 1655:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4181 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 4181 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement 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.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Compression_Yield';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds The SAS System cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Compression_Yield';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Compression_Yield moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS SystemNOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Compression_Yield moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure. The SAS SystemNOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Compression_Yield moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Compression_Yield at Lot_Count = 4218.NOTE: Test 1 was positive for process variable Compression_Yield at Lot_Count = 4228.NOTE: Test 2 was positive for process variable Compression_Yield at Lot_Count = 4162.NOTE: 1 point(s) clipped in the primary chart for Compression_Yield.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 3.33 seconds cpu time 1.10 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:23 NOTE: There were 100 observations read from the data set WORK.CHARTS. The SAS SystemNOTE: PROCEDURE REPORT used (Total process time): real time 0.05 seconds cpu time 0.04 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 1722:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4181 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 4181 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement 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.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Compression_Accountability';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): The SAS System real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Compression_Accountability';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Compression_Accountability moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS SystemNOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Compression_Accountability moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.04 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS SystemWARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Compression_Accountability moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Compression_Accountability at Lot_Count = 4120.NOTE: Test 1 was positive for process variable Compression_Accountability at Lot_Count = 4123.NOTE: Test 1 was positive for process variable Compression_Accountability at Lot_Count = 4127.NOTE: Test 1 was positive for process variable Compression_Accountability at Lot_Count = 4135.NOTE: Test 1 was positive for process variable Compression_Accountability at Lot_Count = 4171.NOTE: Test 1 was positive for process variable Compression_Accountability at Lot_Count = 4205.NOTE: 0 point(s) clipped in the primary chart for Compression_Accountability.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.67 seconds cpu time 1.12 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS SystemNOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:32 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.04 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 1788:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4181 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 4181 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS SystemNOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Coating_Yield';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Coating_Yield';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Coating_Yield moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.04 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables. The SAS SystemNOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Coating_Yield moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds The SAS System cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Coating_Yield moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Coating_Yield at Lot_Count = 4132.NOTE: Test 1 was positive for process variable Coating_Yield at Lot_Count = 4161.NOTE: Test 1 was positive for process variable Coating_Yield at Lot_Count = 4209.NOTE: Test 1 was positive for process variable Coating_Yield at Lot_Count = 4237.NOTE: Test 2 was positive for process variable Coating_Yield at Lot_Count = 4220.NOTE: Test 3 was positive for process variable Coating_Yield at Lot_Count = 4156.NOTE: 3 point(s) clipped in the primary chart for Coating_Yield.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.61 seconds cpu time 0.59 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): The SAS System real time 0.00 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:19 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 1854:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4181 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 4181 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds The SAS System cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Coating_Accountability';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Coating_Accountability';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Coating_Accountability moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.04 seconds The SAS SystemNOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Coating_Accountability moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.03 seconds The SAS SystemNOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Coating_Accountability moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Coating_Accountability at Lot_Count = 4132.NOTE: Test 1 was positive for process variable Coating_Accountability at Lot_Count = 4161.NOTE: Test 1 was positive for process variable Coating_Accountability at Lot_Count = 4209.NOTE: Test 1 was positive for process variable Coating_Accountability at Lot_Count = 4237.NOTE: Test 3 was positive for process variable Coating_Accountability at Lot_Count = 4156.NOTE: 1 point(s) clipped in the primary chart for Coating_Accountability.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 3.17 seconds cpu time 0.96 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 The SAS SystemNOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:28 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 1922:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4181 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 4181 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA. The SAS SystemNOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Weight_Sorting_Yield';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Weight_Sorting_Yield';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Weight_Sorting_Yield moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds The SAS System cpu time 0.04 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Weight_Sorting_Yield moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.03 seconds The SAS System NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Weight_Sorting_Yield moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Weight_Sorting_Yield at Lot_Count = 4111.NOTE: Test 1 was positive for process variable Weight_Sorting_Yield at Lot_Count = 4138.NOTE: Test 1 was positive for process variable Weight_Sorting_Yield at Lot_Count = 4142.NOTE: 0 point(s) clipped in the primary chart for Weight_Sorting_Yield.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.55 seconds cpu time 0.93 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). The SAS System 1318:2 1318:37 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:26 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 1988:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4181 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 4181 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds The SAS SystemNOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Weight_Sorting_Accountability';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Weight_Sorting_Accountability';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Weight_Sorting_Accountability moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): The SAS System real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Weight_Sorting_Accountability moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.08 seconds cpu time 0.04 seconds The SAS System NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Weight_Sorting_Accountability moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Weight_Sorting_Accountability at Lot_Count = 4142.NOTE: Test 4 was positive for process variable Weight_Sorting_Accountability at Lot_Count = 4159.NOTE: 0 point(s) clipped in the primary chart for Weight_Sorting_Accountability.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.68 seconds cpu time 0.82 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 The SAS SystemNOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:35 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2056:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4236 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 4236 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA. The SAS SystemNOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Blend_Assay_mg';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Blend_Assay_mg';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Blend_Assay_mg moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds The SAS System cpu time 0.03 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Blend_Assay_mg moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.03 seconds The SAS System NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Blend_Assay_mg moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Blend_Assay_mg at Lot_Count = 4157.NOTE: Test 1 was positive for process variable Blend_Assay_mg at Lot_Count = 4174.NOTE: Test 1 was positive for process variable Blend_Assay_mg at Lot_Count = 4202.NOTE: Test 1 was positive for process variable Blend_Assay_mg at Lot_Count = 4223.NOTE: Test 4 was positive for process variable Blend_Assay_mg at Lot_Count = 4170.NOTE: Test 4 was positive for process variable Blend_Assay_mg at Lot_Count = 4220.NOTE: 0 point(s) clipped in the primary chart for Blend_Assay_mg.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.65 seconds cpu time 0.87 seconds The SAS SystemNOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:20 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2122:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4232 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 4232 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds The SAS System NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement 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.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Blend_Assay_Percent';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Blend_Assay_Percent';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Blend_Assay_Percent moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA. The SAS SystemNOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Blend_Assay_Percent moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2. The SAS SystemNOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Blend_Assay_Percent moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Blend_Assay_Percent at Lot_Count = 4157.NOTE: Test 1 was positive for process variable Blend_Assay_Percent at Lot_Count = 4164.NOTE: Test 1 was positive for process variable Blend_Assay_Percent at Lot_Count = 4174.NOTE: Test 1 was positive for process variable Blend_Assay_Percent at Lot_Count = 4202.NOTE: Test 1 was positive for process variable Blend_Assay_Percent at Lot_Count = 4223.NOTE: Test 4 was positive for process variable Blend_Assay_Percent at Lot_Count = 4178.NOTE: Test 4 was positive for process variable Blend_Assay_Percent at Lot_Count = 4220.NOTE: 1 point(s) clipped in the primary chart for Blend_Assay_Percent.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS. The SAS SystemNOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.86 seconds cpu time 0.87 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:25 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.04 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2188:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4234 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds The SAS SystemNOTE: There were 4234 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='BU_Average_mg';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='BU_Average_mg';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure. The SAS SystemNOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable BU_Average_mg moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure. The SAS SystemNOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable BU_Average_mg moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable BU_Average_mg moving ranges are based on 2 consecutive values.NOTE: Test 2 was positive for process variable BU_Average_mg at Lot_Count = 4218.NOTE: 0 point(s) clipped in the primary chart for BU_Average_mg.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF. The SAS SystemNOTE: PROCEDURE SHEWHART used (Total process time): real time 2.31 seconds cpu time 0.84 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:19 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2256:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4231 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 4231 observations read from the data set WORK.RESULTSDATA. The SAS SystemNOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement 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.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='BU_Average_Percent';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='BU_Average_Percent';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1. The SAS SystemNOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable BU_Average_Percent moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.04 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1. The SAS SystemNOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable BU_Average_Percent moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.06 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable BU_Average_Percent moving ranges are based on 2 consecutive values.NOTE: Test 2 was positive for process variable BU_Average_Percent at Lot_Count = 4218.NOTE: 0 point(s) clipped in the primary chart for BU_Average_Percent.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): The SAS System real time 2.66 seconds cpu time 0.96 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:24 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2322:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4233 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 4233 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables. The SAS SystemNOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='BU_RSD';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='BU_RSD';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed. The SAS SystemNOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable BU_RSD moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.04 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed. The SAS SystemNOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable BU_RSD moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.06 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable BU_RSD moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable BU_RSD at Lot_Count = 4150.NOTE: Test 2 was positive for process variable BU_RSD at Lot_Count = 4189.NOTE: 0 point(s) clipped in the primary chart for BU_RSD.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): The SAS System real time 2.95 seconds cpu time 0.87 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:45 1318:80 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 4:12 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2385:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4244 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 4244 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables. The SAS SystemNOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Particle_Size_100_Mesh';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement 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.LIMITS. WHERE _VAR_='Particle_Size_100_Mesh';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed. The SAS SystemNOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Particle_Size_100_Mesh moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed. The SAS SystemNOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Particle_Size_100_Mesh moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Particle_Size_100_Mesh moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Particle_Size_100_Mesh at Lot_Count = 4257.NOTE: Test 2 was positive for process variable Particle_Size_100_Mesh at Lot_Count = 4197.NOTE: Test 2 was positive for process variable Particle_Size_100_Mesh at Lot_Count = 4250.NOTE: Test 4 was positive for process variable Particle_Size_100_Mesh at Lot_Count = 4175.NOTE: 0 point(s) clipped in the primary chart for Particle_Size_100_Mesh.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS. The SAS SystemNOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.76 seconds cpu time 0.79 seconds NOTE: Line generated by the invoked macro "LSLCHART".1318 nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all phaselegend vreflabpos=2 zerostd tests=1 to 41318 ! testlabel1=' ' clipfactor=2 totpanels=1 zerostd; label &var="&var (&units)"; run; ods rft columns=4; data stats ___ 11318 ! ; set stats; call symput ('lcl'WARNING 1-322: Assuming the symbol RTF was misspelled as rft.NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:8 1318:43 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 4:28 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). The SAS System 2450:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4245 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 4245 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Particle_Size_30_Mesh';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Particle_Size_30_Mesh'; The SAS SystemNOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Particle_Size_30_Mesh moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS. The SAS SystemNOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Particle_Size_30_Mesh moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values. The SAS SystemNOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Particle_Size_30_Mesh moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Particle_Size_30_Mesh at Lot_Count = 4226.NOTE: Test 1 was positive for process variable Particle_Size_30_Mesh at Lot_Count = 4244.NOTE: Test 1 was positive for process variable Particle_Size_30_Mesh at Lot_Count = 4246.NOTE: Test 1 was positive for process variable Particle_Size_30_Mesh at Lot_Count = 4250.NOTE: Test 1 was positive for process variable Particle_Size_30_Mesh at Lot_Count = 4251.NOTE: Test 2 was positive for process variable Particle_Size_30_Mesh at Lot_Count = 4196.NOTE: Test 2 was positive for process variable Particle_Size_30_Mesh at Lot_Count = 4250.NOTE: 0 point(s) clipped in the primary chart for Particle_Size_30_Mesh.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.66 seconds cpu time 0.82 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:27 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.05 seconds The SAS System cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2516:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4244 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 4244 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Particle_Size_20_Mesh';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds The SAS System NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Particle_Size_20_Mesh';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Particle_Size_20_Mesh moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds The SAS SystemNOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Particle_Size_20_Mesh moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1. The SAS SystemNOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Particle_Size_20_Mesh moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Particle_Size_20_Mesh at Lot_Count = 4196.NOTE: Test 1 was positive for process variable Particle_Size_20_Mesh at Lot_Count = 4226.NOTE: Test 1 was positive for process variable Particle_Size_20_Mesh at Lot_Count = 4227.NOTE: Test 1 was positive for process variable Particle_Size_20_Mesh at Lot_Count = 4229.NOTE: Test 1 was positive for process variable Particle_Size_20_Mesh at Lot_Count = 4242.NOTE: Test 1 was positive for process variable Particle_Size_20_Mesh at Lot_Count = 4245.NOTE: Test 1 was positive for process variable Particle_Size_20_Mesh at Lot_Count = 4248.NOTE: Test 1 was positive for process variable Particle_Size_20_Mesh at Lot_Count = 4249.NOTE: Test 1 was positive for process variable Particle_Size_20_Mesh at Lot_Count = 4253.NOTE: Test 2 was positive for process variable Particle_Size_20_Mesh at Lot_Count = 4192.NOTE: Test 2 was positive for process variable Particle_Size_20_Mesh at Lot_Count = 4220.NOTE: Test 2 was positive for process variable Particle_Size_20_Mesh at Lot_Count = 4250.NOTE: 0 point(s) clipped in the primary chart for Particle_Size_20_Mesh.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.58 seconds cpu time 0.92 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:45 1318:80 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): The SAS System real time 0.00 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 4:27 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.06 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2579:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4245 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 4245 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.03 seconds The SAS System cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Bulk_Density';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Bulk_Density';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Bulk_Density moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.06 seconds cpu time 0.03 seconds The SAS SystemNOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Bulk_Density moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.06 seconds cpu time 0.03 seconds The SAS SystemNOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Bulk_Density moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Bulk_Density at Lot_Count = 4162.NOTE: Test 1 was positive for process variable Bulk_Density at Lot_Count = 4213.NOTE: Test 1 was positive for process variable Bulk_Density at Lot_Count = 4214.NOTE: Test 1 was positive for process variable Bulk_Density at Lot_Count = 4245.NOTE: Test 2 was positive for process variable Bulk_Density at Lot_Count = 4214.NOTE: Test 2 was positive for process variable Bulk_Density at Lot_Count = 4232.NOTE: Test 2 was positive for process variable Bulk_Density at Lot_Count = 4250.NOTE: 0 point(s) clipped in the primary chart for Bulk_Density.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.59 seconds cpu time 0.92 seconds The SAS SystemNOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:18 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.03 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2647:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4245 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 4245 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds The SAS SystemNOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Tap_Density';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Tap_Density';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Tap_Density moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables. The SAS SystemNOTE: PROCEDURE SHEWHART used (Total process time): real time 0.06 seconds cpu time 0.01 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Tap_Density moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): The SAS System real time 0.05 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values.WARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Tap_Density moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Tap_Density at Lot_Count = 4228.NOTE: Test 1 was positive for process variable Tap_Density at Lot_Count = 4229.NOTE: Test 1 was positive for process variable Tap_Density at Lot_Count = 4243.NOTE: Test 1 was positive for process variable Tap_Density at Lot_Count = 4246.NOTE: Test 1 was positive for process variable Tap_Density at Lot_Count = 4247.NOTE: Test 1 was positive for process variable Tap_Density at Lot_Count = 4249.NOTE: Test 1 was positive for process variable Tap_Density at Lot_Count = 4250.NOTE: Test 1 was positive for process variable Tap_Density at Lot_Count = 4251.NOTE: Test 1 was positive for process variable Tap_Density at Lot_Count = 4252.NOTE: Test 1 was positive for process variable Tap_Density at Lot_Count = 4253.NOTE: Test 1 was positive for process variable Tap_Density at Lot_Count = 4254.NOTE: Test 1 was positive for process variable Tap_Density at Lot_Count = 4255. The SAS SystemNOTE: Test 1 was positive for process variable Tap_Density at Lot_Count = 4256.NOTE: Test 1 was positive for process variable Tap_Density at Lot_Count = 4257.NOTE: Test 2 was positive for process variable Tap_Density at Lot_Count = 4196.NOTE: Test 2 was positive for process variable Tap_Density at Lot_Count = 4232.NOTE: Test 2 was positive for process variable Tap_Density at Lot_Count = 4247.NOTE: Test 2 was positive for process variable Tap_Density at Lot_Count = 4256.NOTE: 0 point(s) clipped in the primary chart for Tap_Density.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.45 seconds cpu time 0.90 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:17 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.06 seconds cpu time 0.03 seconds The SAS SystemNOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2713:81 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 4228 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 4228 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Microtablet_Assay';NOTE: The data set WORK.LIMITS has 1 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. The SAS System WHERE _VAR_='Microtablet_Assay';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Microtablet_Assay moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 100 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.06 seconds cpu time 0.04 seconds NOTE: There were 100 observations read from the data set WORK.DATA1.NOTE: There were 100 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 100 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 100 observations read from the data set WORK.DATA2. The SAS SystemNOTE: There were 1 observations read from the data set WORK.LIMITS.NOTE: The data set WORK.CHARTS has 100 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Microtablet_Assay moving ranges are based on 2 consecutive values.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.10 seconds cpu time 0.04 seconds NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for IRCHART statement number 1.NOTE: Control limits are read from the LIMITS= data set.NOTE: Specify NOREADLIMITS to compute the control limits from the data.NOTE: Tests for special causes requested with the TESTS= option are applied to the actual subgroup statistics rather than the clipped values. The SAS SystemWARNING: Confidence limits computed for capability indices are approximate values.NOTE: Since no READINDEX= value was specified, control limits for each process variable are read from the first observation in the LIMITS= data set for which _VAR_ is equal to the variable name and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Microtablet_Assay moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Microtablet_Assay at Lot_Count = 4209.NOTE: Test 1 was positive for process variable Microtablet_Assay at Lot_Count = 4237.NOTE: Test 2 was positive for process variable Microtablet_Assay at Lot_Count = 4227.NOTE: 0 point(s) clipped in the primary chart for Microtablet_Assay.NOTE: There were 100 observations read from the data set WORK.DATA2.NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.68 seconds cpu time 0.95 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 NOTE: There were 1 observations read from the data set WORK.STATS.NOTE: The data set WORK.STATS has 1 observations and 13 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:23 NOTE: There were 100 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.04 seconds cpu time 0.01 seconds The SAS SystemNOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2781:85 NOTE: There were 5269 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 573 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 573 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 100 observations and 176 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 100 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 79 observations read from the data set WORK.LIMITSDATA.NOTE: The data set WORK.LIMITS has 1 observations and 8 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. The SAS System WHERE _VAR_='Microtablet_Dissolution_S1';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 100 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.XCHARTDATA has 600 observations and 4 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for XCHART statement number 1.NOTE: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: There were 600 observations read from the data set WORK.XCHARTDATA.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.DATA1 has 99 observations and 4 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.07 seconds cpu time 0.03 seconds ERROR: BY variables are not properly sorted on data set WORK.PHASES.Lot_Count=4264 Microtablet_Dissolution_S1X=91.166666667 Microtablet_Dissolution_S1R=5 Microtablet_Dissolution_S1N=6_PHASE_=Last 100 Lots with Results _Lot_=170187 FIRST.Lot_Count=1 LAST.Lot_Count=1 _VAR_= _ERROR_=1 _N_=99NOTE: The SAS System stopped processing this step because of errors.NOTE: SAS set option OBS=0 and will continue to check statements. This may cause NOTE: No observations in data set.NOTE: There were 99 observations read from the data set WORK.DATA1. The SAS SystemNOTE: There were 100 observations read from the data set WORK.PHASES.WARNING: The data set WORK.DATA2 may be incomplete. When this step was stopped there were 98 observations and 7 variables.WARNING: Data set WORK.DATA2 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:13 1318:46 1318:147 1318:178 1318:210 NOTE: The data set WORK.CHARTS has 0 observations and 13 variables.WARNING: Data set WORK.CHARTS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.DATA3 has 0 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: Line generated by the invoked macro "TABLETLSLMEANSCHART".1318 proc sgplot data=xchartdata; footnote; scatter x=Lot_Count1318 ! y=&test/group=unit; refline &lsl / axis=y lineattrs=(color=red) noclip label='LSL' labelloc=inside labelpos=min; _ 22 200WARNING: Apparent symbolic reference LSL not resolved.ERROR: Variable LSL not found.ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, The SAS System a datetime constant, (. ERROR 200-322: The symbol is not recognized and will be ignored.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SGPLOT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.STATS has 0 observations and 0 variables.WARNING: Data set WORK.STATS was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds cpu time 0.00 seconds NOTE: Line generated by the invoked macro "TABLETLSLMEANSCHART".1318 data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=_ 22WARNING: Apparent symbolic reference LCL not resolved.NOTE 137-205: Line generated by the invoked macro "TABLETLSLMEANSCHART".1318 label='Current' labelloc=inside labelpos=min; xaxis fitpolicy=rotatethin integer; label unit='Unit'; run; proc1318 ! shewhart data=data3; irchart &test*subgroup / nochart nochart2 outlimits=stats; run; data stats; set stats;1318 ! _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_= _ 22ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. The SAS SystemWARNING: Apparent symbolic reference UCL not resolved.NOTE: Line generated by the invoked macro "TABLETLSLMEANSCHART".1318 &Mean; run; proc shewhart data=data3 limits=stats; irchart &test*subgroup / testlabel1=' ' nochart2 vref=vref _ 221318 ! vreflabpos=2 ciindices lsl=&lsl usl=&usl readphases=all phaselegend zerostd clipfactor=2 tests=1 to 4 totpanels=11318 ! ; label &var="&var (&units)";WARNING: Apparent symbolic reference MEAN not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. NOTE: The SAS System stopped processing this step because of errors.WARNING: The data set WORK.STATS may be incomplete. When this step was stopped there were 0 observations and 16 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 22: LINE and COLUMN cannot be determined.NOTE 242-205: NOSPOOL is on. Rerunning with OPTION SPOOL may allow recovery of the LINE and COLUMN where the error has occurred.ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. 76: LINE and COLUMN cannot be determined.NOTE: NOSPOOL is on. Rerunning with OPTION SPOOL may allow recovery of the LINE and COLUMN where the error has occurred.ERROR 76-322: Syntax error, statement will be ignored.22: LINE and COLUMN cannot be determined.NOTE 242-205: NOSPOOL is on. Rerunning with OPTION SPOOL may allow recovery of the LINE and COLUMN where the error has occurred.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. 200: LINE and COLUMN cannot be determined.NOTE: NOSPOOL is on. Rerunning with OPTION SPOOL may allow recovery of the LINE and COLUMN where the error has occurred.ERROR 200-322: The symbol is not recognized and will be ignored.WARNING: Apparent symbolic reference LSL not resolved. The SAS SystemWARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: Line generated by the invoked macro "TABLETLSLMEANSCHART".1318 proc shewhart history=data2; xchart &test*Lot_Count='*' / nochart2 vref=vref vreflabpos=2 ciindices1318 ! lsl=&lsl usl=&usl readphases=all phaselegend zerostd tests=1 to 4 testlabel1=' ' clipfactor=2 totpanels=1 zerostd __ 22200 76ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. ERROR 200-322: The symbol is not recognized and will be ignored.ERROR 76-322: Syntax error, statement will be ignored.1318 ! lsl=&lsl usl=&usl readphases=all phaselegend zerostd tests=1 to 4 testlabel1=' ' clipfactor=2 totpanels=1 zerostd1318 ! ; label &var="&var (&units)"; _ 22WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved. The SAS SystemERROR 22-322: Syntax error, expecting one of the following: a name, ;. NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.01 seconds cpu time 0.01 seconds WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE REPORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds The SAS SystemNOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2858:81 NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.PHASES has 0 observations and 3 variables.WARNING: Data set WORK.PHASES was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.LIMITS has 0 observations and 7 variables.WARNING: Data set WORK.LIMITS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.VREF has 0 observations and 4 variables.WARNING: Data set WORK.VREF was not replaced because this step was stopped. The SAS SystemNOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.DATA1 has 0 observations and 0 variables.WARNING: Data set WORK.DATA1 was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: The data set WORK.DATA2 has 0 observations and 7 variables.WARNING: Data set WORK.DATA2 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 NOTE: The data set WORK.CHARTS has 0 observations and 13 variables.WARNING: Data set WORK.CHARTS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.STATS has 0 observations and 0 variables.WARNING: Data set WORK.STATS was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): The SAS System real time 0.03 seconds cpu time 0.01 seconds NOTE: Line generated by the invoked macro "BOTHSLCHART".1318 d1318 ! ata stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; run; proc shewhart history=data2 limits=stats; _ 221318 ! irchart &test*Lot_count='*' /WARNING: Apparent symbolic reference LCL not resolved.NOTE 137-205: Line generated by the invoked macro "BOTHSLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats; run;1318 ! data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; run; proc shewhart history=data2 limits=stats; _ 221318 ! irchart &test*Lot_count='*' /ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference UCL not resolved.NOTE 137-205: Line generated by the invoked macro "BOTHSLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats; run;1318 ! data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; run; proc shewhart history=data2 limits=stats; _ 221318 ! irchart &test*Lot_count='*' /ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference MEAN not resolved.NOTE: The SAS System stopped processing this step because of errors.WARNING: The data set WORK.STATS may be incomplete. When this step was stopped there were 0 observations and 16 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped. The SAS SystemNOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Line generated by the invoked macro "BOTHSLCHART".1318 nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all phaselegend vreflabpos=2 zerostd tests=1 to 4 __ 22200 76ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. ERROR 200-322: The symbol is not recognized and will be ignored.ERROR 76-322: Syntax error, statement will be ignored.1318 ! nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all phaselegend vreflabpos=2 zerostd tests=1 to 41318 ! testlabel1=' ' clipfactor=2 totpanels=1 ; label &var="&var (&units)"; run; ods rtf columns=4; data stats; set _ 221318 ! stats; call symput ('lcl',stripWARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds cpu time 0.01 seconds The SAS System NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:2 1318:37 NOTE: The data set WORK.STATS has 0 observations and 13 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE REPORT used (Total process time): real time 0.04 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2911:85 NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped. The SAS SystemNOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.PHASES has 0 observations and 3 variables.WARNING: Data set WORK.PHASES was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.LIMITS has 0 observations and 8 variables.WARNING: Data set WORK.LIMITS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.VREF has 0 observations and 4 variables.WARNING: Data set WORK.VREF was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.XCHARTDATA has 0 observations and 4 variables.WARNING: Data set WORK.XCHARTDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS System NOTE: The data set WORK.DATA1 has 0 observations and 0 variables.WARNING: Data set WORK.DATA1 was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: The data set WORK.DATA2 has 0 observations and 7 variables.WARNING: Data set WORK.DATA2 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:13 1318:46 1318:147 1318:178 1318:210 NOTE: The data set WORK.CHARTS has 0 observations and 13 variables.WARNING: Data set WORK.CHARTS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.DATA3 has 0 observations and 7 variables.WARNING: Data set WORK.DATA3 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS SystemNOTE: Line generated by the invoked macro "CONTENTUNIFORMITY".1318 proc sgplot data=xchartdata; footnote; scatter x=Lot_Count1318 ! y=&test/group=unit; refline &lsl / axis=y lineattrs=(color=red) noclip label='LSL' labelloc=inside labelpos=min; __ 2222 200200 1318 ! refline &usl / axis=y lineattrsERROR: Variable CONTENT_UNIFORMITY_S1 not found.WARNING: Apparent symbolic reference LSL not resolved.ERROR: Variable LSL not found.WARNING: Apparent symbolic reference USL not resolved.ERROR: Variable USL not found.ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, (. ERROR 200-322: The symbol is not recognized and will be ignored.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SGPLOT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.STATS has 0 observations and 0 variables.WARNING: Data set WORK.STATS was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.02 seconds cpu time 0.01 seconds The SAS System NOTE: Line generated by the invoked macro "CONTENTUNIFORMITY".1318 data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; run; _ 221318 ! proc shewhart data=data3; irchart &test*subgroup / testlabel1=' ' nochart2 vref=vref vreflabpos=2 ciindices1318 ! lsl=&lsl usl=&usl readphases=allWARNING: Apparent symbolic reference LCL not resolved.NOTE 137-205: Line generated by the invoked macro "CONTENTUNIFORMITY".1318 nochart nochart2 outlimits=stats; run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; run; _ 221318 ! proc shewhart data=data3; irchart &test*subgroup / testlabel1=' ' nochart2 vref=vref vreflabpos=2 ciindices1318 ! lsl=&lsl usl=&usl readphases=allERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference UCL not resolved.NOTE 137-205: Line generated by the invoked macro "CONTENTUNIFORMITY".1318 nochart nochart2 outlimits=stats; run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; run; _ 221318 ! proc shewhart data=data3; irchart &test*subgroup / testlabel1=' ' nochart2 vref=vref vreflabpos=2 ciindices1318 ! lsl=&lsl usl=&usl readphases=allERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference MEAN not resolved.NOTE: The SAS System stopped processing this step because of errors.WARNING: The data set WORK.STATS may be incomplete. When this step was stopped there were 0 observations and 16 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds The SAS System cpu time 0.00 seconds 22: LINE and COLUMN cannot be determined.NOTE 242-205: NOSPOOL is on. Rerunning with OPTION SPOOL may allow recovery of the LINE and COLUMN where the error has occurred.ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. 76: LINE and COLUMN cannot be determined.NOTE: NOSPOOL is on. Rerunning with OPTION SPOOL may allow recovery of the LINE and COLUMN where the error has occurred.ERROR 76-322: Syntax error, statement will be ignored.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.NOTE: Line generated by the invoked macro "CONTENTUNIFORMITY".1318 phaselegend zerostd clipfactor=2 tests=1 to 4 totpanels=1 outlimits=stats; label &var="&var (&units)"; run; _ 22 2001318 ! proc shewhart history=data2; xchart &test*Lot_Count='*' / nochart2 vref=vref vreflabpos=2 ciindices lsl=&lsl1318 ! usl=&usl readphases=allWARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. ERROR 200-322: The symbol is not recognized and will be ignored.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.01 seconds cpu time 0.03 seconds 22: LINE and COLUMN cannot be determined.NOTE 242-205: NOSPOOL is on. Rerunning with OPTION SPOOL may allow recovery of the LINE and COLUMN where the error has The SAS System occurred.ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. 76: LINE and COLUMN cannot be determined.NOTE: NOSPOOL is on. Rerunning with OPTION SPOOL may allow recovery of the LINE and COLUMN where the error has occurred.ERROR 76-322: Syntax error, statement will be ignored.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.NOTE: Line generated by the invoked macro "CONTENTUNIFORMITY".1318 phaselegend zerostd clipfactor=2 tests=1 to 4 testlabel1=' ' totpanels=1 zerostd; label &var="&var (&units)"; _ 22 2001318 ! run; ods rtf columns=1; proc report data=resultsdata nowindows style(column)={just=center}; format1318 ! &firstvar-&lastvar &format; columnWARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. ERROR 200-322: The symbol is not recognized and will be ignored.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.00 seconds WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved. The SAS SystemWARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE REPORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2992:81 NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped. The SAS SystemNOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.PHASES has 0 observations and 3 variables.WARNING: Data set WORK.PHASES was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.LIMITS has 0 observations and 7 variables.WARNING: Data set WORK.LIMITS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.VREF has 0 observations and 4 variables.WARNING: Data set WORK.VREF was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds The SAS SystemNOTE: The data set WORK.DATA1 has 0 observations and 0 variables.WARNING: Data set WORK.DATA1 was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds cpu time 0.01 seconds NOTE: The data set WORK.DATA2 has 0 observations and 7 variables.WARNING: Data set WORK.DATA2 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 NOTE: The data set WORK.CHARTS has 0 observations and 13 variables.WARNING: Data set WORK.CHARTS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.STATS has 0 observations and 0 variables.WARNING: Data set WORK.STATS was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.03 seconds The SAS SystemNOTE: Line generated by the invoked macro "USLCHART".1318 data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc shewhart_ 221318 ! history=data2 limits=WARNING: Apparent symbolic reference LCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference UCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference MEAN not resolved.NOTE: The SAS System stopped processing this step because of errors.WARNING: The data set WORK.STATS may be incomplete. When this step was stopped there were 0 observations and 16 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS System NOTE: Line generated by the invoked macro "USLCHART".1318 stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all __ 22200 76ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. ERROR 200-322: The symbol is not recognized and will be ignored.ERROR 76-322: Syntax error, statement will be ignored.1318 ! stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all1318 ! phaselegend vreflabpos=2 zerostd clipfactor=2 tests=1 to 4 totpanels=1 zerostd; label &var="&var (&units)"; run; _ 221318 ! ods rtf columns=4; dataWARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds cpu time 0.00 seconds The SAS SystemNOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 3026:45 3026:80 NOTE: The data set WORK.STATS has 0 observations and 13 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference USL not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE REPORT used (Total process time): real time 0.04 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 3044:85 NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS SystemNOTE: The data set WORK.PHASES has 0 observations and 3 variables.WARNING: Data set WORK.PHASES was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.LIMITS has 0 observations and 8 variables.WARNING: Data set WORK.LIMITS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.VREF has 0 observations and 4 variables.WARNING: Data set WORK.VREF was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.XCHARTDATA has 0 observations and 4 variables.WARNING: Data set WORK.XCHARTDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.DATA1 has 0 observations and 0 variables. The SAS SystemWARNING: Data set WORK.DATA1 was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.01 seconds NOTE: The data set WORK.DATA2 has 0 observations and 7 variables.WARNING: Data set WORK.DATA2 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:13 1318:46 1318:147 1318:178 1318:210 NOTE: The data set WORK.CHARTS has 0 observations and 13 variables.WARNING: Data set WORK.CHARTS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.DATA3 has 0 observations and 7 variables.WARNING: Data set WORK.DATA3 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Line generated by the invoked macro "CAPSULELSLMEANSCHART".1318 proc sgplot data=xchartdata; footnote; scatter x=Lot_Count1318 ! y=&test/group=unit; refline &lsl / axis=y lineattrs=(color=red) noclip label='LSL' labelloc=inside labelpos=min; The SAS System _ 22 200ERROR: Variable CAPSULE_DISSOLUTION_S1 not found.WARNING: Apparent symbolic reference LSL not resolved.ERROR: Variable LSL not found.ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, (. ERROR 200-322: The symbol is not recognized and will be ignored.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SGPLOT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.STATS has 0 observations and 0 variables.WARNING: Data set WORK.STATS was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds cpu time 0.01 seconds NOTE: Line generated by the invoked macro "CAPSULELSLMEANSCHART".1318 data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=_ 22WARNING: Apparent symbolic reference LCL not resolved.NOTE 137-205: Line generated by the invoked macro "CAPSULELSLMEANSCHART". The SAS System1318 label='Current' labelloc=inside labelpos=min; xaxis fitpolicy=rotatethin integer; label unit='Unit'; run; proc1318 ! shewhart data=data3; irchart &test*subgroup / nochart nochart2 outlimits=stats; run; data stats; set stats;1318 ! _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_= _ 22ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference UCL not resolved.NOTE: Line generated by the invoked macro "CAPSULELSLMEANSCHART".1318 &Mean; run; proc shewhart data=data3 limits=stats; irchart &test*subgroup / testlabel1=' ' nochart2 vref=vref _ 221318 ! vreflabpos=2 ciindices lsl=&lsl usl=&usl readphases=all phaselegend zerostd clipfactor=2 tests=1 to 4 totpanels=11318 ! ; label &var="&var (&units)";WARNING: Apparent symbolic reference MEAN not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. NOTE: The SAS System stopped processing this step because of errors.WARNING: The data set WORK.STATS may be incomplete. When this step was stopped there were 0 observations and 16 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 22: LINE and COLUMN cannot be determined.NOTE 242-205: NOSPOOL is on. Rerunning with OPTION SPOOL may allow recovery of the LINE and COLUMN where the error has occurred.ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. 76: LINE and COLUMN cannot be determined.NOTE: NOSPOOL is on. Rerunning with OPTION SPOOL may allow recovery of the LINE and COLUMN where the error has occurred.ERROR 76-322: Syntax error, statement will be ignored. The SAS System22: LINE and COLUMN cannot be determined.NOTE 242-205: NOSPOOL is on. Rerunning with OPTION SPOOL may allow recovery of the LINE and COLUMN where the error has occurred.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. 200: LINE and COLUMN cannot be determined.NOTE: NOSPOOL is on. Rerunning with OPTION SPOOL may allow recovery of the LINE and COLUMN where the error has occurred.ERROR 200-322: The symbol is not recognized and will be ignored.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: Line generated by the invoked macro "CAPSULELSLMEANSCHART".1318 proc shewhart history=data2; xchart &test*Lot_Count='*' / nochart2 vref=vref vreflabpos=2 ciindices1318 ! lsl=&lsl usl=&usl readphases=all phaselegend zerostd tests=1 to 4 testlabel1=' ' clipfactor=2 totpanels=1 zerostd __ 22200 76ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. ERROR 200-322: The symbol is not recognized and will be ignored.ERROR 76-322: Syntax error, statement will be ignored.1318 ! lsl=&lsl usl=&usl readphases=all phaselegend zerostd tests=1 to 4 testlabel1=' ' clipfactor=2 totpanels=1 zerostd The SAS System1318 ! ; label &var="&var (&units)"; _ 22WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.01 seconds WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LSL not resolved. The SAS SystemNOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE REPORT used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 3121:81 NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.PHASES has 0 observations and 3 variables.WARNING: Data set WORK.PHASES was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.LIMITS has 0 observations and 7 variables.WARNING: Data set WORK.LIMITS was not replaced because this step was stopped. The SAS SystemNOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.VREF has 0 observations and 4 variables.WARNING: Data set WORK.VREF was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.DATA1 has 0 observations and 0 variables.WARNING: Data set WORK.DATA1 was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds cpu time 0.01 seconds NOTE: The data set WORK.DATA2 has 0 observations and 7 variables.WARNING: Data set WORK.DATA2 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 NOTE: The data set WORK.CHARTS has 0 observations and 13 variables.WARNING: Data set WORK.CHARTS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): The SAS System real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.STATS has 0 observations and 0 variables.WARNING: Data set WORK.STATS was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds cpu time 0.00 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc shewhart_ 221318 ! history=data2 limits=WARNING: Apparent symbolic reference LCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference UCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 22 The SAS System1318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference MEAN not resolved.NOTE: The SAS System stopped processing this step because of errors.WARNING: The data set WORK.STATS may be incomplete. When this step was stopped there were 0 observations and 16 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all __ 22200 76ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. ERROR 200-322: The symbol is not recognized and will be ignored.ERROR 76-322: Syntax error, statement will be ignored.1318 ! stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all1318 ! phaselegend vreflabpos=2 zerostd clipfactor=2 tests=1 to 4 totpanels=1 zerostd; label &var="&var (&units)"; run; _ 221318 ! ods rtf columns=4; dataWARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved. The SAS SystemWARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 3155:45 3155:80 NOTE: The data set WORK.STATS has 0 observations and 13 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference USL not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE REPORT used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 3173:81 NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables. The SAS SystemWARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.PHASES has 0 observations and 3 variables.WARNING: Data set WORK.PHASES was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.LIMITS has 0 observations and 7 variables.WARNING: Data set WORK.LIMITS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.VREF has 0 observations and 4 variables.WARNING: Data set WORK.VREF was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds The SAS System NOTE: The data set WORK.DATA1 has 0 observations and 0 variables.WARNING: Data set WORK.DATA1 was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: The data set WORK.DATA2 has 0 observations and 7 variables.WARNING: Data set WORK.DATA2 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 NOTE: The data set WORK.CHARTS has 0 observations and 13 variables.WARNING: Data set WORK.CHARTS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.STATS has 0 observations and 0 variables.WARNING: Data set WORK.STATS was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds cpu time 0.00 seconds The SAS SystemNOTE: Line generated by the invoked macro "USLCHART".1318 data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc shewhart_ 221318 ! history=data2 limits=WARNING: Apparent symbolic reference LCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference UCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference MEAN not resolved.NOTE: The SAS System stopped processing this step because of errors.WARNING: The data set WORK.STATS may be incomplete. When this step was stopped there were 0 observations and 16 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds The SAS System cpu time 0.01 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all __ 22200 76ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. ERROR 200-322: The symbol is not recognized and will be ignored.ERROR 76-322: Syntax error, statement will be ignored.1318 ! stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all1318 ! phaselegend vreflabpos=2 zerostd clipfactor=2 tests=1 to 4 totpanels=1 zerostd; label &var="&var (&units)"; run; _ 221318 ! ods rtf columns=4; dataWARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.02 seconds cpu time 0.01 seconds The SAS SystemNOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 3207:45 3207:80 NOTE: The data set WORK.STATS has 0 observations and 13 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference USL not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE REPORT used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 3223:81 NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds The SAS System NOTE: The data set WORK.PHASES has 0 observations and 3 variables.WARNING: Data set WORK.PHASES was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.LIMITS has 0 observations and 7 variables.WARNING: Data set WORK.LIMITS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.VREF has 0 observations and 4 variables.WARNING: Data set WORK.VREF was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.DATA1 has 0 observations and 0 variables.WARNING: Data set WORK.DATA1 was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds cpu time 0.00 seconds The SAS SystemNOTE: The data set WORK.DATA2 has 0 observations and 7 variables.WARNING: Data set WORK.DATA2 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 NOTE: The data set WORK.CHARTS has 0 observations and 13 variables.WARNING: Data set WORK.CHARTS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.STATS has 0 observations and 0 variables.WARNING: Data set WORK.STATS was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc shewhart_ 221318 ! history=data2 limits=WARNING: Apparent symbolic reference LCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd; The SAS System1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference UCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference MEAN not resolved.NOTE: The SAS System stopped processing this step because of errors.WARNING: The data set WORK.STATS may be incomplete. When this step was stopped there were 0 observations and 16 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all __ 22200 76ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. The SAS SystemERROR 200-322: The symbol is not recognized and will be ignored.ERROR 76-322: Syntax error, statement will be ignored.1318 ! stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all1318 ! phaselegend vreflabpos=2 zerostd clipfactor=2 tests=1 to 4 totpanels=1 zerostd; label &var="&var (&units)"; run; _ 221318 ! ods rtf columns=4; dataWARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.13 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 3257:45 3257:80 NOTE: The data set WORK.STATS has 0 observations and 13 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: Apparent symbolic reference UCL not resolved. The SAS SystemWARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference USL not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE REPORT used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 3273:81 NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.PHASES has 0 observations and 3 variables.WARNING: Data set WORK.PHASES was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS SystemNOTE: The data set WORK.LIMITS has 0 observations and 7 variables.WARNING: Data set WORK.LIMITS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.VREF has 0 observations and 4 variables.WARNING: Data set WORK.VREF was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.DATA1 has 0 observations and 0 variables.WARNING: Data set WORK.DATA1 was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.00 seconds NOTE: The data set WORK.DATA2 has 0 observations and 7 variables.WARNING: Data set WORK.DATA2 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 NOTE: The data set WORK.CHARTS has 0 observations and 13 variables. The SAS SystemWARNING: Data set WORK.CHARTS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.STATS has 0 observations and 0 variables.WARNING: Data set WORK.STATS was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc shewhart_ 221318 ! history=data2 limits=WARNING: Apparent symbolic reference LCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference UCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc The SAS System _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference MEAN not resolved.NOTE: The SAS System stopped processing this step because of errors.WARNING: The data set WORK.STATS may be incomplete. When this step was stopped there were 0 observations and 16 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all __ 22200 76ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. ERROR 200-322: The symbol is not recognized and will be ignored.ERROR 76-322: Syntax error, statement will be ignored.1318 ! stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all1318 ! phaselegend vreflabpos=2 zerostd clipfactor=2 tests=1 to 4 totpanels=1 zerostd; label &var="&var (&units)"; run; _ 221318 ! ods rtf columns=4; dataWARNING: Apparent symbolic reference LSL not resolved. The SAS SystemWARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.12 seconds cpu time 0.03 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 3307:45 3307:80 NOTE: The data set WORK.STATS has 0 observations and 13 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference USL not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE REPORT used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). The SAS System 3324:81 NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.PHASES has 0 observations and 3 variables.WARNING: Data set WORK.PHASES was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.LIMITS has 0 observations and 7 variables.WARNING: Data set WORK.LIMITS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.VREF has 0 observations and 4 variables.WARNING: Data set WORK.VREF was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): The SAS System real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.DATA1 has 0 observations and 0 variables.WARNING: Data set WORK.DATA1 was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.00 seconds NOTE: The data set WORK.DATA2 has 0 observations and 7 variables.WARNING: Data set WORK.DATA2 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 NOTE: The data set WORK.CHARTS has 0 observations and 13 variables.WARNING: Data set WORK.CHARTS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.STATS has 0 observations and 0 variables.WARNING: Data set WORK.STATS was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds The SAS System cpu time 0.03 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc shewhart_ 221318 ! history=data2 limits=WARNING: Apparent symbolic reference LCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference UCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference MEAN not resolved.NOTE: The SAS System stopped processing this step because of errors.WARNING: The data set WORK.STATS may be incomplete. When this step was stopped there were 0 observations and 16 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped. The SAS SystemNOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all __ 22200 76ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. ERROR 200-322: The symbol is not recognized and will be ignored.ERROR 76-322: Syntax error, statement will be ignored.1318 ! stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all1318 ! phaselegend vreflabpos=2 zerostd clipfactor=2 tests=1 to 4 totpanels=1 zerostd; label &var="&var (&units)"; run; _ 221318 ! ods rtf columns=4; dataWARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds cpu time 0.01 seconds The SAS System NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 3358:45 3358:80 NOTE: The data set WORK.STATS has 0 observations and 13 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference USL not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE REPORT used (Total process time): real time 0.03 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 3374:81 NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): The SAS System real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.PHASES has 0 observations and 3 variables.WARNING: Data set WORK.PHASES was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.LIMITS has 0 observations and 7 variables.WARNING: Data set WORK.LIMITS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.VREF has 0 observations and 4 variables.WARNING: Data set WORK.VREF was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.DATA1 has 0 observations and 0 variables.WARNING: Data set WORK.DATA1 was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.02 seconds cpu time 0.03 seconds The SAS SystemNOTE: The data set WORK.DATA2 has 0 observations and 7 variables.WARNING: Data set WORK.DATA2 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 NOTE: The data set WORK.CHARTS has 0 observations and 13 variables.WARNING: Data set WORK.CHARTS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.STATS has 0 observations and 0 variables.WARNING: Data set WORK.STATS was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc shewhart_ 221318 ! history=data2 limits=WARNING: Apparent symbolic reference LCL not resolved. The SAS SystemNOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference UCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference MEAN not resolved.NOTE: The SAS System stopped processing this step because of errors.WARNING: The data set WORK.STATS may be incomplete. When this step was stopped there were 0 observations and 16 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all __ 22200 The SAS System 76ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. ERROR 200-322: The symbol is not recognized and will be ignored.ERROR 76-322: Syntax error, statement will be ignored.1318 ! stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all1318 ! phaselegend vreflabpos=2 zerostd clipfactor=2 tests=1 to 4 totpanels=1 zerostd; label &var="&var (&units)"; run; _ 221318 ! ods rtf columns=4; dataWARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 3408:45 3408:80 NOTE: The data set WORK.STATS has 0 observations and 13 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS SystemWARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference USL not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE REPORT used (Total process time): real time 0.03 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 3424:81 NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.PHASES has 0 observations and 3 variables.WARNING: Data set WORK.PHASES was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS SystemNOTE: The data set WORK.LIMITS has 0 observations and 7 variables.WARNING: Data set WORK.LIMITS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.VREF has 0 observations and 4 variables.WARNING: Data set WORK.VREF was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.DATA1 has 0 observations and 0 variables.WARNING: Data set WORK.DATA1 was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: The data set WORK.DATA2 has 0 observations and 7 variables.WARNING: Data set WORK.DATA2 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). The SAS System 1318:56 1318:89 1318:190 1318:221 1318:1 NOTE: The data set WORK.CHARTS has 0 observations and 13 variables.WARNING: Data set WORK.CHARTS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.STATS has 0 observations and 0 variables.WARNING: Data set WORK.STATS was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds cpu time 0.00 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc shewhart_ 221318 ! history=data2 limits=WARNING: Apparent symbolic reference LCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference UCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART". The SAS System1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference MEAN not resolved.NOTE: The SAS System stopped processing this step because of errors.WARNING: The data set WORK.STATS may be incomplete. When this step was stopped there were 0 observations and 16 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all __ 22200 76ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. ERROR 200-322: The symbol is not recognized and will be ignored.ERROR 76-322: Syntax error, statement will be ignored.1318 ! stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all1318 ! phaselegend vreflabpos=2 zerostd clipfactor=2 tests=1 to 4 totpanels=1 zerostd; label &var="&var (&units)"; run; _ 22 The SAS System1318 ! ods rtf columns=4; dataWARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.06 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 3458:45 3458:80 NOTE: The data set WORK.STATS has 0 observations and 13 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference USL not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE REPORT used (Total process time): real time 0.03 seconds cpu time 0.00 seconds The SAS SystemNOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 3475:81 NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.PHASES has 0 observations and 3 variables.WARNING: Data set WORK.PHASES was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.LIMITS has 0 observations and 7 variables.WARNING: Data set WORK.LIMITS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.VREF has 0 observations and 4 variables. The SAS SystemWARNING: Data set WORK.VREF was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.DATA1 has 0 observations and 0 variables.WARNING: Data set WORK.DATA1 was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.13 seconds cpu time 0.04 seconds NOTE: The data set WORK.DATA2 has 0 observations and 7 variables.WARNING: Data set WORK.DATA2 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 NOTE: The data set WORK.CHARTS has 0 observations and 13 variables.WARNING: Data set WORK.CHARTS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.STATS has 0 observations and 0 variables.WARNING: Data set WORK.STATS was not replaced because new file is incomplete. The SAS SystemNOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc shewhart_ 221318 ! history=data2 limits=WARNING: Apparent symbolic reference LCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference UCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference MEAN not resolved.NOTE: The SAS System stopped processing this step because of errors. The SAS SystemWARNING: The data set WORK.STATS may be incomplete. When this step was stopped there were 0 observations and 16 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all __ 22200 76ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. ERROR 200-322: The symbol is not recognized and will be ignored.ERROR 76-322: Syntax error, statement will be ignored.1318 ! stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all1318 ! phaselegend vreflabpos=2 zerostd clipfactor=2 tests=1 to 4 totpanels=1 zerostd; label &var="&var (&units)"; run; _ 221318 ! ods rtf columns=4; dataWARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): The SAS System real time 0.03 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 3509:45 3509:80 NOTE: The data set WORK.STATS has 0 observations and 13 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference USL not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE REPORT used (Total process time): real time 0.04 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 3525:81 NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables. The SAS SystemWARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.PHASES has 0 observations and 3 variables.WARNING: Data set WORK.PHASES was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.LIMITS has 0 observations and 7 variables.WARNING: Data set WORK.LIMITS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.VREF has 0 observations and 4 variables.WARNING: Data set WORK.VREF was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.DATA1 has 0 observations and 0 variables.WARNING: Data set WORK.DATA1 was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds The SAS System cpu time 0.01 seconds NOTE: The data set WORK.DATA2 has 0 observations and 7 variables.WARNING: Data set WORK.DATA2 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 NOTE: The data set WORK.CHARTS has 0 observations and 13 variables.WARNING: Data set WORK.CHARTS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.STATS has 0 observations and 0 variables.WARNING: Data set WORK.STATS was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc shewhart_ 22 The SAS System1318 ! history=data2 limits=WARNING: Apparent symbolic reference LCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference UCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference MEAN not resolved.NOTE: The SAS System stopped processing this step because of errors.WARNING: The data set WORK.STATS may be incomplete. When this step was stopped there were 0 observations and 16 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all __ The SAS System 22200 76ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. ERROR 200-322: The symbol is not recognized and will be ignored.ERROR 76-322: Syntax error, statement will be ignored.1318 ! stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all1318 ! phaselegend vreflabpos=2 zerostd clipfactor=2 tests=1 to 4 totpanels=1 zerostd; label &var="&var (&units)"; run; _ 221318 ! ods rtf columns=4; dataWARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 3559:45 3559:80 NOTE: The data set WORK.STATS has 0 observations and 13 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds The SAS System cpu time 0.01 seconds WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference USL not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE REPORT used (Total process time): real time 0.03 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 3575:81 NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RESULTSDATA has 0 observations and 176 variables.WARNING: Data set WORK.RESULTSDATA was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.PHASES has 0 observations and 3 variables.WARNING: Data set WORK.PHASES was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds The SAS System cpu time 0.01 seconds NOTE: The data set WORK.LIMITS has 0 observations and 7 variables.WARNING: Data set WORK.LIMITS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.VREF has 0 observations and 4 variables.WARNING: Data set WORK.VREF was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.DATA1 has 0 observations and 0 variables.WARNING: Data set WORK.DATA1 was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: The data set WORK.DATA2 has 0 observations and 7 variables.WARNING: Data set WORK.DATA2 was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds The SAS SystemNOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1318:56 1318:89 1318:190 1318:221 1318:1 NOTE: The data set WORK.CHARTS has 0 observations and 13 variables.WARNING: Data set WORK.CHARTS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.STATS has 0 observations and 0 variables.WARNING: Data set WORK.STATS was not replaced because new file is incomplete.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc shewhart_ 221318 ! history=data2 limits=WARNING: Apparent symbolic reference LCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. The SAS SystemWARNING: Apparent symbolic reference UCL not resolved.NOTE 137-205: Line generated by the invoked macro "USLCHART".1318 Mean)); run; proc shewhart history=data2; irchart &test*Lot_count='*' /nochart nochart2 outlimits=stats zerostd;1318 ! run; data stats; set stats; _LCLI_=&LCL; _UCLI_=&UCL; _MEAN_=&Mean; if _LCLI_ < 0 then _LCLI_=0; run; proc _ 221318 ! shewhart history=data2 limits=ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. WARNING: Apparent symbolic reference MEAN not resolved.NOTE: The SAS System stopped processing this step because of errors.WARNING: The data set WORK.STATS may be incomplete. When this step was stopped there were 0 observations and 16 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Line generated by the invoked macro "USLCHART".1318 stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all __ 22200 76ERROR 22-322: Syntax error, expecting one of the following: a numeric constant, a datetime constant, a missing value, (. ERROR 200-322: The symbol is not recognized and will be ignored.ERROR 76-322: Syntax error, statement will be ignored.1318 ! stats; irchart &test*Lot_Count='*' / testlabel1=' ' nochart2 vref=vref ciindices lsl=&lsl usl=&usl readphases=all1318 ! phaselegend vreflabpos=2 zerostd clipfactor=2 tests=1 to 4 totpanels=1 zerostd; label &var="&var (&units)"; run; The SAS System _ 221318 ! ods rtf columns=4; dataWARNING: Apparent symbolic reference LSL not resolved.WARNING: Apparent symbolic reference USL not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference VAR not resolved.WARNING: Apparent symbolic reference UNITS not resolved.ERROR 22-322: Syntax error, expecting one of the following: a name, ;. NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 3609:45 3609:80 NOTE: The data set WORK.STATS has 0 observations and 13 variables.WARNING: Data set WORK.STATS was not replaced because this step was stopped.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: Apparent symbolic reference UCL not resolved.WARNING: Apparent symbolic reference LCL not resolved.WARNING: Apparent symbolic reference USL not resolved.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE REPORT used (Total process time): real time 0.03 seconds cpu time 0.00 seconds The SAS System ERROR: Errors printed on pages 116,117,118,119,120,121,124,125,129,130,131,132,136,137,141,142,143,144,147,148,149,152,153, 156,157,158,161,162,163,166,167,170,171,172,175,176,177,180,181,184,185,186,189,190,191,192.NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414NOTE: The SAS System used: real time 1:19.40 cpu time 30.40 seconds ................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download