Errors  : 1 ==> 1
Warnings: 0

NOTE: PROCEDURE PRINTTO used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
 
 
213        data blood_pressure2;
214           set testdata.blood_pressure;
215           if med=1 then do;
216              output;
217              med=2;
218              output;
219           end;
220           else output;
221        run;
 
NOTE: There were 240 observations read from the data set TESTDATA.BLOOD_PRESSURE.
NOTE: The data set WORK.BLOOD_PRESSURE2 has 360 observations and 5 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
 
 
222        %boxplot(data=blood_pressure2, x=visit, y=sbp, group=med, report=&g_work\report21.pdf)
MPRINT(BOXPLOT):   proc sql noprint;
MPRINT(BOXPLOT):   select distinct visit into :xvalues separated by '" "' from blood_pressure2;
MPRINT(BOXPLOT):   select distinct visit into :xvalues2 separated by ' ' from blood_pressure2;
MPRINT(BOXPLOT):   quit;
NOTE: PROCEDURE SQL used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
 
 
MPRINT(BOXPLOT):   proc sql noprint;
MPRINT(BOXPLOT):   select count(distinct med) into :count from blood_pressure2;
MPRINT(BOXPLOT):   select min(med) into :lower from blood_pressure2;
MPRINT(BOXPLOT):   quit;
113                                                                                                                      The SAS System                                                                                             11:39 Friday, March 21, 20
 
NOTE: PROCEDURE SQL used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
 
 
ERROR: boxplot: Variable med must have exactly two values
223        %assertLogMsg(i_logMsg=ERROR: boxplot: Variable med must have exactly two values)
MPRINT(ENDTESTCALL):   PROC PRINTTO LOG="c:\.jenkins\jobs\SASUnit Build Release ZIP-File\workspace\v1.3\example\doc\sasunit\en/log/001.log" PRINT="c:\.jenkins\jobs\SASUnit Build Release ZIP-File\workspace\v1.3\example\doc\sasunit\en/tst/001.lst" ;
MPRINT(ENDTESTCALL):   RUN;