- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
*/
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Valuejustify should be one word.
Use the {i} icon to post logs, so that horizontal spacing is preserved.