Errors : 1
==>
1
Warnings: 0
NOTE: PROCEDURE PRINTTO used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
202 data blood_pressure;
203 set testdata.blood_pressure;
204 if med=1;
205 run;
NOTE: There were 240 observations read from the data set TESTDATA.BLOOD_PRESSURE.
NOTE: The data set WORK.BLOOD_PRESSURE has 120 observations and 5 variables.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
206 %boxplot(data=blood_pressure, x=visit, y=sbp, group=med, report=&g_work\report20.pdf)
MPRINT(BOXPLOT): proc sql noprint;
MPRINT(BOXPLOT): select distinct visit into :xvalues separated by '" "' from blood_pressure;
MPRINT(BOXPLOT): select distinct visit into :xvalues2 separated by ' ' from blood_pressure;
MPRINT(BOXPLOT): quit;
NOTE: PROCEDURE SQL used (Total process time):
real time 0.01 seconds
109 The SAS System 11:39 Friday, March 21, 20
cpu time 0.01 seconds
MPRINT(BOXPLOT): proc sql noprint;
MPRINT(BOXPLOT): select count(distinct med) into :count from blood_pressure;
MPRINT(BOXPLOT): select min(med) into :lower from blood_pressure;
MPRINT(BOXPLOT): quit;
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
207 %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;