My code is very simple: ods graphics; proc sgpanel data=sashelp.class; where age > 14; panelby age / headerbackcolor=pink; vbar name / response=height stat=mean; run; ods graphics / reset=width; the log message: 2262 ods graphics / reset=width; 2263 ods graphics; 2264 2265 proc sgpanel data=sashelp.class; 2266 where age > 14; 2267 panelby age / headerbackcolor=pink; --------------- 22 202 ERROR 22-322: Syntax error, expecting one of the following: ;, BORDER, COLHEADERPOS, COLUMNS, HEADERATTRS, LAYOUT, MISSING, NOBORDER, NOHEADER, NOVARNAME, NOWALL, ONEPANEL, PROPORTIONAL, ROWHEADERPOS, ROWS, SKIPEMPTYCELLS, SORT, SPACING, SPARSE, START, UNISCALE. ERROR 202-322: The option or parameter is not recognized and will be ignored. 2268 vbar name / response=height stat=mean; 2269 run; NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE SGPANEL used (Total process time): real time 0.01 seconds cpu time 0.01 seconds
... View more