Dear SAS experts, could you help to find what is going on with this statement?
Thanks in advance for your comments.
proc sgplot data=tempend4 noautolegend nocycleattrs;
refline 1 100 / axis=x;
refline 0.1 10 / axis=x lineattrs=(pattern=shortdash) transparency=0.5;
highlow y=nEffect low=lowercl high=uppercl / lowcap=serif highcap=serif
lineattrs=graphdata1;
scatter y=nOverall x=oddsratioest / markerattrs=graphdata2
(symbol=diamondfilled size=10);
highlow y=nEffect low=lowercl high=uppercl / type=bar intervalbarwidth=.1in
nooutline fillattrs=graphdata1;
yaxistable effect / y=nAll position=left location=outside
nolabel value justify=right pad=(right=0px);
yaxistable oddsratioest lowercl uppercl /*weight*/ / y=nEffect position=right location=inside
labelalign=center labelattrs=(weight=bold)
pad=(left=20px right=10px);
inset 'Low-Normal' / position=bottomleft;
inset 'Overweight-Obesity ' / position=bottomright;
xaxis type=log min=0.01 max=100 minor display=(nolabel)
offsetmin=0 offsetmax=0;
yaxis display=none offsetmin=0.1 offsetmax=0.05 values=(1 to &nobs);
run;
/*2802 nolabel value justify=right pad=(right=0px);
-----
22
76
ERROR 22-322: Syntax error, expecting one of the following: ;, ATTRID, CLASS, COLORGROUP, LABEL, LABELATTRS,
LABELPOS, LOCATION, NAME, NOLABEL, NOSTATLABEL, POSITION, SEPARATOR, STAT, TEXTGROUP, TEXTGROUPID,
TITLE, TITLEATTRS, VALUEATTRS, X, Y, Y2AXIS.
ERROR 76-322: Syntax error, statement will be ignored.
2803 yaxistable oddsratioest lowercl uppercl /*weight*/ / y=nEffect position=right location=inside
2804 labelalign=center labelattrs=(weight=bold)
----------
22
76
ERROR 22-322: Syntax error, expecting one of the following: ;, ATTRID, CLASS, COLORGROUP, LABEL, LABELATTRS,
LABELPOS, LOCATION, NAME, NOLABEL, NOSTATLABEL, POSITION, SEPARATOR, STAT, TEXTGROUP, TEXTGROUPID,
TITLE, TITLEATTRS, VALUEATTRS, X, Y, Y2AXIS.
ERROR 76-322: Syntax error, statement will be ignored.
*/
Take a look at your YAXISTABLE statements and what options are allowed in them.
You can find all you need in the PROC SGPLOT YAXISTABLE Option Help Center
For example, what does sss= do?
Valuejustify should be one word.
Use the {i} icon to post logs, so that horizontal spacing is preserved.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.