Sas Institute



1 The SAS System 11:37 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.08 seconds cpu time 0.34 seconds 1 proc datasets library=work kill; Directory Libref WORK Engine V9 Physical Name C:\Users\u052230\AppData\Local\Temp\SAS Temporary Files\_TD9304 Filename C:\Users\u052230\AppData\Local\Temp\SAS Temporary Files\_TD9304WARNING: 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:37 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:37 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:37 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:37 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:37 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:37 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:37 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:37 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:37 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:37 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:37 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:37 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:37 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:37 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:37 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:37 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_ Vessel_1 Vessel_2 Vessel_3 Vessel_4 Vessel_5 Vessel_6;826 define Lot_Count / 'Count' display style(column)=[cellwidth=.5in];827 define _Lot_ / display;828 define Vessel_1 / display;829 define Vessel_2 / display;830 define Vessel_3 / display;831 define Vessel_4 / display;832 define Vessel_5 / display;833 define Vessel_6 / display;834 compute Vessel_1;835 if Vessel_1 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]")835 ! ;836 if Vessel_1 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]")836 ! ;837 if Vessel_1 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");838 if Vessel_1='.' then call define(_col_, "style", "style=[backgroundcolor=white]");839 endcomp;840 compute Vessel_2;841 if Vessel_2 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]")841 ! ;18 The SAS System 11:37 Wednesday, November 18, 2015842 if Vessel_2 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]")842 ! ;843 if Vessel_2 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");844 if Vessel_2='.' then call define(_col_, "style", "style=[backgroundcolor=white]");845 endcomp;846 compute Vessel_3;847 if Vessel_3 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]")847 ! ;848 if Vessel_3 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]")848 ! ;849 if Vessel_3 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");850 if Vessel_3='.' then call define(_col_, "style", "style=[backgroundcolor=white]");851 endcomp;852 compute Vessel_4;853 if Vessel_4 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]")853 ! ;854 if Vessel_4 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]")854 ! ;855 if Vessel_4 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");856 if Vessel_4='.' then call define(_col_, "style", "style=[backgroundcolor=white]");857 endcomp;858 compute Vessel_5;859 if Vessel_5 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]")859 ! ;860 if Vessel_5 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]")860 ! ;861 if Vessel_5 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");862 if Vessel_5='.' then call define(_col_, "style", "style=[backgroundcolor=white]");863 endcomp;864 compute Vessel_6;865 if Vessel_6 < &lcl then call define(_col_, "style", "style=[backgroundcolor=orange]")865 ! ;866 if Vessel_6 > &ucl then call define(_col_, "style", "style=[backgroundcolor=orange]")866 ! ;867 if Vessel_6 < &lsl then call define(_col_, "style", "style=[backgroundcolor=red]");868 if Vessel_6='.' then call define(_col_, "style", "style=[backgroundcolor=white]");869 endcomp;870 run;871 872 873 %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;19 The SAS System 11:37 Wednesday, November 18, 2015885 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;925 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 20 The SAS System 11:37 Wednesday, November 18, 2015938 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;977 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=&usl21 The SAS System 11:37 Wednesday, November 18, 2015989 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]");1021 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",22 The SAS System 11:37 Wednesday, November 18, 20151028 ! "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=);1054 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;23 The SAS System 11:37 Wednesday, November 18, 20151067 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;1107 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_));24 The SAS System 11:37 Wednesday, November 18, 20151120 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 1155 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 25 The SAS System 11:37 Wednesday, November 18, 20151168 %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_;1208 _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 26 The SAS System 11:37 Wednesday, November 18, 20151220 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.);1258 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\Atorvastatin 10 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\Product27 The SAS System 11:37 Wednesday, November 18, 20151268 ! Compliance\AQRs\Templates\KU Logo.jpg'}"1269 justify=center "Data Trending, &sysdate: Production and QC Data, &productname, Item1269 ! Code &productnumber"1270 /*justify=right "Page ^{pageof}"*/;1271 title1 "&productname, &sysdate";1272 1273 %BothSLChart (startdate='15Aug2013'd, test=Pre_Compaction_Yield, pos=sw, pos2=nw,1273 ! format=6.1)1274 %BothSLChart (startdate='15Aug2013'd, test=Pre_Compaction_Acc, pos=sw, pos2=nw,1274 ! format=6.1)1275 %BothSLChart (startdate='15Aug2013'd, test=Roller_Compaction_Yield, pos=sw, pos2=nw,1275 ! format=6.1)1276 %BothSLChart (startdate='15Aug2013'd, test=Roller_Compaction_Acc, pos=nw, pos2=nw,1276 ! format=6.1)1277 %BothSLChart (startdate='15Aug2013'd, test=Final_Blend_Yield, pos=nw, pos2=nw,1277 ! format=6.1)1278 %BothSLChart (startdate='15Aug2013'd, test=Final_Blend_Acc, pos=nw, pos2=nw,1278 ! format=6.1)1279 %BothSLChart (startdate='15Aug2013'd, test=Compression_Avg_Tab_Wt, pos=sw, pos2=nw,1279 ! format=6.1)1280 %BothSLChart (startdate='15Aug2013'd, test=Compression_Yield, pos=nw, pos2=nw,1280 ! format=6.1)1281 %BothSLChart (startdate='15Aug2013'd, test=Compression_Accountability, pos=nw,1281 ! pos2=nw, format=6.1)1282 %BothSLChart (startdate='15Aug2013'd, test=Coating_Yield, pos=nw, pos2=nw,1282 ! format=6.1)1283 %BothSLChart (startdate='15Aug2013'd, test=Coating_Accountability, pos=nw, pos2=nw,1283 ! format=6.1)1284 %BothSLChart (startdate='15Aug2013'd, test=BU_Average, pos=nw, pos2=nw, format=6.1)1285 %USLChart (startdate='15Aug2013'd, test=BU_RSD, format=6.1, pos=nw, pos2=nw)1286 %BothSLChart (startdate='15Aug2013'd, test=BU_Assay, pos=nw, pos2=nw, format=6.0)1287 %BothSLChart (startdate='15Aug2013'd, test=Assay_Percent, pos=sw, pos2=nw,1287 ! format=6.2)1288 %BothSLChart (startdate='15Aug2013'd, test=Assay_mg, pos=sw, pos2=nw, format=6.2)1289 %ContentUniformity (startdate='15Aug2013'd, test=Content_Uniformity_S1, firstvar=CU1,1289 ! lastvar=CU10, samplesize=10, startlotcount=187, pos=nw, pos2=nw, pos3=nw,1289 ! format=6.2)1290 %USLChart (startdate='15Aug2013'd, test=CU_AV_S1, pos=nw, pos2=ne, format=6.0)1291 %USLChart (startdate='15Aug2013'd, test=Water_Content, format=6.1, pos=nw, pos2=nw)1292 %TabletLSLMeansChart (startdate='15Aug2013'd, test=Dissolution_S1, firstvar=Vessel_1,1292 ! lastvar=Vessel_6, samplesize=6, startlotcount=3829, pos=nw, pos2=nw, pos3=nw,1292 ! format=6.0)1293 %USLChart (startdate='15Aug2013'd, test=Pyrrolidone_Analog, format=6.2, pos=nw,1293 ! pos2=n)1294 %USLChart (startdate='15Aug2013'd, test=Related_Compound_H, format=6.2, pos=nw,1294 ! pos2=n)1295 %USLChart (startdate='15Aug2013'd, test=Epoxy_Pyrrolooxazin_Analog, format=6.2,1295 ! pos=nw, pos2=n)1296 %USLChart (startdate='15Aug2013'd, test=Fluorophenyl_Impurity, format=6.2, pos=nw,1296 ! pos2=n)1297 %USLChart (startdate='15Aug2013'd, test=Related_Compound_D, format=6.2, pos=nw,1297 ! pos2=n)1298 %USLChart (startdate='15Aug2013'd, test=Individual_Unknowns, format=6.2, pos=nw,28 The SAS System 11:37 Wednesday, November 18, 20151298 ! pos2=n)1299 %USLChart (startdate='15Aug2013'd, test=Total_Degradants, format=6.2, pos=nw, pos2=n)1300 1301 ods rtf close;1302 ods graphics off;1303 1304 %mend AQRChartsFile;1305 1306 %GetTests (filepath=Atorvastatin (Prototype)\Atorvastatin 10 mg (Prototype).01.xlsm)1 The SAS System 11:37 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 0.94 seconds cpu time 0.42 seconds 1 The SAS System 11:37 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.86 seconds cpu time 0.49 seconds 1307 1308 %AQRChartsFile (filepath=Atorvastatin (Prototype), productnumber=890,1308 ! productname=Atorvastatin 10 mg, startdate='01Nov2013'd, enddate='31Oct2014'd)NOTE: 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\Atorvastatin (Prototype)\Atorvastatin 10 mg Charts.rtfNOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). The SAS System 1383:82 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 9 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: There were 9 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 9 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 9 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 9 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_), '____', ' ()/')='Pre_Compaction_Yield';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.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Pre_Compaction_Yield'; 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.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 Pre_Compaction_Yield moving ranges are based on 2 consecutive values.NOTE: There were 9 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 9 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.11 seconds cpu time 0.01 seconds NOTE: There were 9 observations read from the data set WORK.DATA1.NOTE: There were 9 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 9 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). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 9 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 9 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 Pre_Compaction_Yield moving ranges are based on 2 consecutive values.NOTE: There were 9 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 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 Pre_Compaction_Yield moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Pre_Compaction_Yield.NOTE: There were 9 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 7.70 seconds cpu time 1.23 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:2 1308: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 9 observations read from the data set WORK.CHARTS.NOTE: 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). 1450:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2. The SAS SystemNOTE: The data set WORK.RESULTSDATA has 9 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: There were 9 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 9 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 9 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 9 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_), '____', ' ()/')='Pre_Compaction_Acc';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.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Pre_Compaction_Acc';NOTE: The data set WORK.VREF has 2 observations and 4 variables.NOTE: DATA statement used (Total process time): The SAS System 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 Pre_Compaction_Acc moving ranges are based on 2 consecutive values.NOTE: There were 9 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 9 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.04 seconds NOTE: There were 9 observations read from the data set WORK.DATA1.NOTE: There were 9 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 9 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). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 9 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 9 observations and 12 variables.NOTE: DATA statement used (Total process time): The SAS System 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 Pre_Compaction_Acc moving ranges are based on 2 consecutive values.NOTE: There were 9 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.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.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. The SAS SystemNOTE: For process variable Pre_Compaction_Acc moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Pre_Compaction_Acc.NOTE: There were 9 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.15 seconds cpu time 0.74 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:2 1308: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:24 NOTE: There were 9 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). 1518:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 9 observations and 122 variables.NOTE: DATA statement used (Total process time): The SAS System real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 9 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 9 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 9 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 9 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_), '____', ' ()/')='Roller_Compaction_Yield';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.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Roller_Compaction_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 The SAS System 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 Roller_Compaction_Yield moving ranges are based on 2 consecutive values.NOTE: There were 9 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 9 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.12 seconds cpu time 0.03 seconds NOTE: There were 9 observations read from the data set WORK.DATA1.NOTE: There were 9 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 9 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 9 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 9 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds The SAS System 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 Roller_Compaction_Yield moving ranges are based on 2 consecutive values.NOTE: There were 9 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 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 Roller_Compaction_Yield moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Roller_Compaction_Yield. The SAS SystemNOTE: There were 9 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). 1308:2 1308: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:29 NOTE: There were 9 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). 1584:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 9 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds The SAS System NOTE: There were 9 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 9 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 9 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 9 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_), '____', ' ()/')='Roller_Compaction_Acc';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_='Roller_Compaction_Acc';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 The SAS SystemWARNING: 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 Roller_Compaction_Acc moving ranges are based on 2 consecutive values.NOTE: There were 9 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 9 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: There were 9 observations read from the data set WORK.DATA1.NOTE: There were 9 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 9 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). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 9 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 9 observations and 12 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: 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 Roller_Compaction_Acc moving ranges are based on 2 consecutive values.NOTE: There were 9 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 Roller_Compaction_Acc moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Roller_Compaction_Acc.NOTE: There were 9 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 3.06 seconds cpu time 0.92 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:2 1308: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:27 NOTE: There were 9 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). 1650:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 9 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds The SAS SystemNOTE: There were 9 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 9 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 9 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 9 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_), '____', ' ()/')='Final_Blend_Yield';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.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Final_Blend_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. 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 Final_Blend_Yield moving ranges are based on 2 consecutive values.NOTE: There were 9 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 9 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 9 observations read from the data set WORK.DATA1.NOTE: There were 9 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 9 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 9 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 9 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. 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 Final_Blend_Yield moving ranges are based on 2 consecutive values.NOTE: There were 9 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 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 Final_Blend_Yield moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Final_Blend_Yield.NOTE: There were 9 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.54 seconds cpu time 0.82 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:2 1308: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:23 NOTE: There were 9 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). 1718:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 9 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 9 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 9 observations and 122 variables. The SAS SystemNOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 9 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 9 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_), '____', ' ()/')='Final_Blend_Acc';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.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Final_Blend_Acc';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 Final_Blend_Acc moving ranges are based on 2 consecutive values.NOTE: There were 9 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 9 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.01 seconds NOTE: There were 9 observations read from the data set WORK.DATA1.NOTE: There were 9 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 9 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 9 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 9 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. The SAS SystemNOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: For process variable Final_Blend_Acc moving ranges are based on 2 consecutive values.NOTE: There were 9 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.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 Final_Blend_Acc moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Final_Blend_Acc.NOTE: There were 9 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.39 seconds cpu time 0.92 seconds The SAS System NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:2 1308: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:21 NOTE: There were 9 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 1784:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 8 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 8 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 8 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds The SAS System cpu time 0.00 seconds NOTE: There were 8 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 8 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_Avg_Tab_Wt';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.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Compression_Avg_Tab_Wt';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_Avg_Tab_Wt moving ranges are based on 2 consecutive values. The SAS SystemNOTE: There were 8 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 8 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.04 seconds NOTE: There were 8 observations read from the data set WORK.DATA1.NOTE: There were 8 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 8 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 8 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 8 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_Avg_Tab_Wt moving ranges are based on 2 consecutive values. The SAS SystemNOTE: There were 8 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 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 Compression_Avg_Tab_Wt moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Compression_Avg_Tab_Wt.NOTE: There were 8 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.05 seconds cpu time 0.85 seconds The SAS SystemNOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:2 1308: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:28 NOTE: There were 8 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). 1850:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 8 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 8 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 8 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds The SAS SystemNOTE: There were 8 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 8 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_), '____', ' ()/')='Compression_Yield';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.01 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 8 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF. The SAS SystemNOTE: The data set WORK.DATA1 has 8 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 8 observations read from the data set WORK.DATA1.NOTE: There were 8 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 8 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 8 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 8 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 8 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables. The SAS SystemNOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.06 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 Compression_Yield moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Compression_Yield.NOTE: There were 8 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.47 seconds cpu time 0.85 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). The SAS System 1308:2 1308: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 8 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). 1918:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 8 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 8 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 8 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds The SAS SystemNOTE: There were 8 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 8 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): real time 0.01 seconds cpu time 0.01 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.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 8 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 8 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): The SAS System real time 0.05 seconds cpu time 0.04 seconds NOTE: There were 8 observations read from the data set WORK.DATA1.NOTE: There were 8 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 8 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:56 1308:89 1308:190 1308:221 1308:1 NOTE: There were 8 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 8 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 8 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 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 Compression_Accountability moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Compression_Accountability.NOTE: There were 8 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.44 seconds cpu time 0.74 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:2 1308: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. The SAS SystemNOTE: 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:32 NOTE: There were 8 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). 1984:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 8 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 8 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 8 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 8 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 8 observations and 3 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.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.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 Coating_Yield moving ranges are based on 2 consecutive values.NOTE: There were 8 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 8 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.03 seconds The SAS SystemNOTE: There were 8 observations read from the data set WORK.DATA1.NOTE: There were 8 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 8 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 8 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 8 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 8 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_Yield moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Coating_Yield.NOTE: There were 8 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.88 seconds cpu time 0.87 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:2 1308: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 The SAS System 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 8 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2052:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 8 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 8 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 8 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 8 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 8 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds The SAS System 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.01 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.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 Coating_Accountability moving ranges are based on 2 consecutive values.NOTE: There were 8 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 8 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.03 seconds The SAS SystemNOTE: There were 8 observations read from the data set WORK.DATA1.NOTE: There were 8 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 8 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). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 8 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 8 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 Coating_Accountability moving ranges are based on 2 consecutive values.NOTE: There were 8 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.01 seconds NOTE: There were 1 observations read from the data set WORK.STATS. The SAS SystemNOTE: 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 Coating_Accountability moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Coating_Accountability.NOTE: There were 8 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). 1308:2 1308: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:28 NOTE: There were 8 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). 2118:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 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_), '____', ' ()/')='BU_Average';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';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 BU_Average moving ranges are based on 2 consecutive values.NOTE: There were 7 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 7 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.04 seconds NOTE: There were 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES. The SAS SystemNOTE: The data set WORK.DATA2 has 7 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 7 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 7 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 BU_Average moving ranges are based on 2 consecutive values.NOTE: There were 7 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): The SAS System 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 moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for BU_Average.NOTE: There were 7 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.33 seconds cpu time 0.71 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:2 1308: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 The SAS SystemNOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 5:16 NOTE: There were 7 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.05 seconds cpu time 0.01 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2184:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 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. The SAS System 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.02 seconds cpu time 0.01 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.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 BU_RSD moving ranges are based on 2 consecutive values.NOTE: There were 7 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 7 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: There were 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 7 observations and 6 variables.NOTE: DATA statement used (Total process time): The SAS System 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). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 7 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 7 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 BU_RSD moving ranges are based on 2 consecutive values.NOTE: There were 7 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 System 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 = 12.NOTE: 0 point(s) clipped in the primary chart for BU_RSD.NOTE: There were 7 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.31 seconds cpu time 0.84 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:45 1308: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:12 NOTE: There were 7 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). 2249:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 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_), '____', ' ()/')='BU_Assay'; 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.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='BU_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.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 BU_Assay moving ranges are based on 2 consecutive values.NOTE: There were 7 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 7 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.04 seconds NOTE: There were 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 7 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). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 7 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 7 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 BU_Assay moving ranges are based on 2 consecutive values.NOTE: There were 7 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.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 BU_Assay moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for BU_Assay.NOTE: There were 7 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.61 seconds cpu time 0.90 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:2 1308: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:14 NOTE: There were 7 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). 2315:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 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_), '____', ' ()/')='Assay_Percent';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.02 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Assay_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.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 Assay_Percent moving ranges are based on 2 consecutive values.NOTE: There were 7 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 7 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: There were 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 7 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds The SAS SystemNOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 7 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 7 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 Assay_Percent moving ranges are based on 2 consecutive values.NOTE: There were 7 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 Assay_Percent moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Assay_Percent.NOTE: There were 7 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.42 seconds cpu time 0.74 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:2 1308: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 7 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.03 seconds The SAS System cpu time 0.04 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2381:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 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_), '____', ' ()/')='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.01 seconds The SAS System NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='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 Assay_mg moving ranges are based on 2 consecutive values.NOTE: There were 7 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 7 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.07 seconds cpu time 0.03 seconds NOTE: There were 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 7 observations and 6 variables.NOTE: DATA statement 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). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 7 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 7 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 Assay_mg moving ranges are based on 2 consecutive values.NOTE: There were 7 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 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 Assay_mg moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Assay_mg.NOTE: There were 7 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.44 seconds cpu time 0.79 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:2 1308: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:14 NOTE: There were 7 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.05 seconds cpu time 0.01 seconds The SAS SystemNOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 2449:85 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 16307 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.02 seconds cpu time 0.01 seconds The SAS SystemNOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Content_Uniformity_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 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.XCHARTDATA has 70 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 70 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 7 observations and 4 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: There were 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 7 observations and 7 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). 1308:13 1308:46 1308:147 1308:178 1308:210 NOTE: There were 7 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 7 observations and 14 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 70 observations read from the data set WORK.XCHARTDATA.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA3 has 70 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: PROCEDURE SGPLOT used (Total process time): real time 1.48 seconds cpu time 0.28 seconds NOTE: There were 70 observations read from the data set WORK.XCHARTDATA.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. The SAS SystemNOTE: For process variable Content_Uniformity_S1 moving ranges are based on 2 consecutive values.NOTE: There were 70 observations read from the data set WORK.DATA3.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: 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: 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 Content_Uniformity_S1 moving ranges are based on 2 consecutive values.WARNING: The values of capability indices saved in the OUTLIMITS= data set should be interpreted only after verifying that the process is in statistical control.NOTE: 0 point(s) clipped in the primary chart for Content_Uniformity_S1.NOTE: There were 70 observations read from the data set WORK.DATA3.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: The data set WORK.STATS has 1 observations and 27 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.50 seconds cpu time 0.82 seconds The SAS SystemWARNING: Variable CONTENT_UNIFORMITY_S1 not found in data set WORK.DATA2.WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for XCHART statement number 1.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: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: Test 1 was positive for process variable Content_Uniformity_S1 at Lot_Count = 1.NOTE: Test 1 was positive for process variable Content_Uniformity_S1 at Lot_Count = 4.NOTE: 0 point(s) clipped in the primary chart for Content_Uniformity_S1.NOTE: There were 7 observations read from the data set WORK.DATA2.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.19 seconds cpu time 0.90 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 4:9 4:9 4:9 4:9 4:9 4:9 4:9 4:9 4:9 4:10 NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.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). 2623:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): The SAS System real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 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_), '____', ' ()/')='CU_AV_S1';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_='CU_AV_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 The SAS System 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 CU_AV_S1 moving ranges are based on 2 consecutive values.NOTE: There were 7 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 7 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.04 seconds NOTE: There were 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 7 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). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 7 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 7 observations and 12 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds The SAS System 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 CU_AV_S1 moving ranges are based on 2 consecutive values.NOTE: There were 7 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.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 CU_AV_S1 moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for CU_AV_S1. The SAS SystemNOTE: There were 7 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.37 seconds cpu time 0.71 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:45 1308: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:14 NOTE: There were 7 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). 2686:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS System NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 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_), '____', ' ()/')='Water_Content';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_='Water_Content';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 The SAS SystemWARNING: 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 Water_Content moving ranges are based on 2 consecutive values.NOTE: There were 7 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 7 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.04 seconds NOTE: There were 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 7 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 7 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 7 observations and 12 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: 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 Water_Content moving ranges are based on 2 consecutive values.NOTE: There were 7 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: Apparent invocation of macro W not resolved.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 Water_Content moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Water_Content at Lot_Count = 1.NOTE: 0 point(s) clipped in the primary chart for Water_Content. The SAS SystemNOTE: There were 7 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.40 seconds cpu time 0.95 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:45 1308: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:19 NOTE: There were 7 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). 2751:85 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds The SAS System NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 16307 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.02 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='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 The SAS SystemNOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.XCHARTDATA has 42 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 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 42 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 7 observations and 4 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: There were 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 7 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:13 1308:46 1308:147 1308:178 1308:210 NOTE: There were 7 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 7 observations and 14 variables. The SAS SystemNOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 42 observations read from the data set WORK.XCHARTDATA.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA3 has 42 observations and 7 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: PROCEDURE SGPLOT used (Total process time): real time 0.66 seconds cpu time 0.24 seconds NOTE: There were 42 observations read from the data set WORK.XCHARTDATA.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 Dissolution_S1 moving ranges are based on 2 consecutive values.NOTE: There were 42 observations read from the data set WORK.DATA3.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 subgroup.NOTE: For process variable Dissolution_S1 moving ranges are based on 2 consecutive values.NOTE: Test 4 was positive for process variable Dissolution_S1 at subgroup = 24.NOTE: 0 point(s) clipped in the primary chart for Dissolution_S1.NOTE: There were 42 observations read from the data set WORK.DATA3.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.79 seconds WARNING: Variable DISSOLUTION_S1 not found in data set WORK.DATA2.WARNING: ODS Graphics is experimental in this release of the SHEWHART procedure.NOTE: Processing beginning for XCHART statement number 1.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: Three-sigma limits are assumed.NOTE: TYPE=ESTIMATE is assumed for the process mean and standard deviation used to compute the control limits.NOTE: Test 1 was positive for process variable Dissolution_S1 at Lot_Count = 1.NOTE: 0 point(s) clipped in the primary chart for Dissolution_S1.NOTE: There were 7 observations read from the data set WORK.DATA2.NOTE: There were 2 observations read from the data set WORK.VREF.NOTE: PROCEDURE SHEWHART used (Total process time): real time 2.54 seconds cpu time 0.88 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 4:14 4:14 4:14 4:14 4:14 4:14 NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.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). 2885:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds The SAS System NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 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_), '____', ' ()/')='Pyrrolidone_Analog';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_='Pyrrolidone_Analog';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 Pyrrolidone_Analog moving ranges are based on 2 consecutive values.NOTE: There were 7 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 7 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: There were 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 7 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 7 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 7 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 Pyrrolidone_Analog moving ranges are based on 2 consecutive values.NOTE: There were 7 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.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 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 Pyrrolidone_Analog moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Pyrrolidone_Analog at Lot_Count = 1.NOTE: 0 point(s) clipped in the primary chart for Pyrrolidone_Analog.NOTE: There were 7 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.43 seconds cpu time 0.79 seconds The SAS SystemNOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:45 1308: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:24 NOTE: There were 7 observations read from the data set WORK.CHARTS.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). 2948:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds The SAS SystemNOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 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_), '____', ' ()/')='Related_Compound_H';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_='Related_Compound_H';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 Related_Compound_H moving ranges are based on 2 consecutive values.NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: There were 2 observations read from the data set WORK.VREF. The SAS SystemNOTE: The data set WORK.DATA1 has 7 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.06 seconds cpu time 0.01 seconds NOTE: There were 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 7 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). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 7 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 7 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 Related_Compound_H moving ranges are based on 2 consecutive values.NOTE: There were 7 observations read from the data set WORK.DATA2.NOTE: The data set WORK.STATS has 1 observations and 13 variables. The SAS SystemNOTE: 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 Related_Compound_H moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Related_Compound_H.NOTE: There were 7 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.43 seconds cpu time 0.79 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). The SAS System 1308:45 1308: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:24 NOTE: There were 7 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.03 seconds cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 3011:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds The SAS SystemNOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 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_), '____', ' ()/')='Epoxy_Pyrrolooxazin_Analog';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_='Epoxy_Pyrrolooxazin_Analog';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 Epoxy_Pyrrolooxazin_Analog moving ranges are based on 2 consecutive values.NOTE: There were 7 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 7 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): The SAS System real time 0.04 seconds cpu time 0.03 seconds NOTE: There were 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 7 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). 1308:56 1308:89 1308:190 1308:221 1308:1 NOTE: There were 7 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 7 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 Epoxy_Pyrrolooxazin_Analog moving ranges are based on 2 consecutive values.NOTE: There were 7 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 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 Epoxy_Pyrrolooxazin_Analog moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Epoxy_Pyrrolooxazin_Analog.NOTE: There were 7 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.46 seconds cpu time 0.93 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:45 1308: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. The SAS SystemNOTE: 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:32 NOTE: There were 7 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 3076:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 observations and 3 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.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Fluorophenyl_Impurity';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.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Fluorophenyl_Impurity';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 Fluorophenyl_Impurity moving ranges are based on 2 consecutive values.NOTE: There were 7 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 7 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 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 7 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 7 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 7 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 Fluorophenyl_Impurity moving ranges are based on 2 consecutive values.NOTE: There were 7 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 Fluorophenyl_Impurity moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Fluorophenyl_Impurity at Lot_Count = 1.NOTE: 0 point(s) clipped in the primary chart for Fluorophenyl_Impurity.NOTE: There were 7 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.62 seconds cpu time 0.95 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:45 1308: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.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 4:27 NOTE: There were 7 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 3139:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.00 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_), '____', ' ()/')='Related_Compound_D';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_='Related_Compound_D';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 Related_Compound_D moving ranges are based on 2 consecutive values.NOTE: There were 7 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 7 observations and 3 variables.NOTE: PROCEDURE SHEWHART used (Total process time): real time 0.04 seconds cpu time 0.01 seconds The SAS SystemNOTE: There were 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 7 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 7 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 7 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 Related_Compound_D moving ranges are based on 2 consecutive values.NOTE: There were 7 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 Related_Compound_D moving ranges are based on 2 consecutive values.NOTE: Test 1 was positive for process variable Related_Compound_D at Lot_Count = 1.NOTE: 0 point(s) clipped in the primary chart for Related_Compound_D.NOTE: There were 7 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.78 seconds cpu time 0.90 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:45 1308: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.01 seconds The SAS System cpu time 0.00 seconds NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column). 4:24 NOTE: There were 7 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). 3202:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 observations and 3 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS System NOTE: There were 1 observations read from the data set WORK.LIMITSDATA. WHERE TRANSLATE(STRIP(_VAR_), '____', ' ()/')='Individual_Unknowns';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.01 seconds NOTE: There were 1 observations read from the data set WORK.LIMITS. WHERE _VAR_='Individual_Unknowns';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 Individual_Unknowns moving ranges are based on 2 consecutive values.WARNING: No variability was encountered in the data for process variable Individual_Unknowns.WARNING: Control limits cannot be established for Individual_Unknowns.NOTE: There were 7 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 7 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 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 7 observations and 6 variables.NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 7 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 7 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 Individual_Unknowns moving ranges are based on 2 consecutive values.WARNING: No variability was encountered in the data for process variable Individual_Unknowns.WARNING: Control limits cannot be established for Individual_Unknowns.NOTE: There were 7 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 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.WARNING: In the LIMITS= data set the value of _STDDEV_ is zero in the first observation for which _VAR_ is equal to Individual_Unknowns and _SUBGRP_ is equal to Lot_Count.WARNING: In the LIMITS= data set the value of _R_ is zero in the first observation for which _VAR_ is equal to Individual_Unknowns and _SUBGRP_ is equal to Lot_Count.NOTE: For process variable Individual_Unknowns moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Individual_Unknowns.NOTE: There were 7 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.86 seconds cpu time 0.67 seconds The SAS SystemNOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:45 1308: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:25 NOTE: There were 7 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). 3267:81 NOTE: There were 13 observations read from the data set WORK.RESULTSDATA2.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.RESULTSDATA has 7 observations and 122 variables.NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds The SAS SystemNOTE: There were 7 observations read from the data set WORK.RESULTSDATA.NOTE: The data set WORK.PHASES has 7 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_), '____', ' ()/')='Total_Degradants';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_='Total_Degradants';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 Total_Degradants moving ranges are based on 2 consecutive values.NOTE: There were 7 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 7 observations and 3 variables. The SAS SystemNOTE: PROCEDURE SHEWHART used (Total process time): real time 0.11 seconds cpu time 0.03 seconds NOTE: There were 7 observations read from the data set WORK.DATA1.NOTE: There were 7 observations read from the data set WORK.PHASES.NOTE: The data set WORK.DATA2 has 7 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). 1308:56 1308:89 1308:190 1308:221 1308:1 WARNING: Multiple lengths were specified for the BY variable _VAR_ by input data sets. This may cause unexpected results.NOTE: There were 7 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 7 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 Total_Degradants moving ranges are based on 2 consecutive values.NOTE: There were 7 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.10 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.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: 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 Total_Degradants moving ranges are based on 2 consecutive values.NOTE: 0 point(s) clipped in the primary chart for Total_Degradants.NOTE: There were 7 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.50 seconds cpu time 0.92 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1308:45 1308:80 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). 4:22 NOTE: There were 7 observations read from the data set WORK.CHARTS.NOTE: PROCEDURE REPORT used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414NOTE: The SAS System used: real time 1:34.65 cpu time 31.87 seconds ................
................

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

Google Online Preview   Download