- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I have a vertical bar chart overlaid with a series plot of individual IDs paneled by treatment group. I would like the symbols for the marker attributes to be different by the panelby variable rather than the ID variable for the series, and the color of the lines as well. How can I specify this in my code?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Just set the GROUP= role to the classification variable you want. This can be the same as the PANELBY variable if you want.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you, this worked for the vertical bar plots but when I use it, my error bars disappear. Not sure why?
for the series plot, since I am grouping by individual patient number here, I would like the marker attributes to be different by the panel variable. Perhaps one to be a circlefilled and the other to be trianglefilled. Any way I can do that?
Here is my code:
proc sgpanel data=dat noautolegend;
panelby group;
vbarparm category=visit response=mean /group=group
limitlower=low limitupper=up;
series x=visit y=yvar/group=id
markers markerattrs=(size=12 symbol=circlefilled) lineattrs=(pattern=solid color=black);
run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
For Series plot the GROUP is used to join the points to form the line. However, you can use the GROUPLC to get line color by another classifier. Use GROUPMS to set symbols by another classifier. Note, the GROUP must be the lowest level of classification. Do not set marker symbol in the MARKERATTRS option. Use STYLEATTRS to set the new list of markers you want.
Since your bars are now grouped by "group" variable, make sure your upper and lower error values are also correctly grouped.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Great thanks Sanjay!
Also, how can I customize a keylegend based on my grouplc groupmc and groupms variables? the auto legend is outputting by ID, whereas I need this by my paneled group variable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
With SGPANEL, you can have one key legend outside. You can control which plots are included by providing NAME= for each plot, then include only the required names in the KEYLEGEND statement. See examples here: https://blogs.sas.com/content/graphicallyspeaking/2017/10/27/legend-items/
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I am not sure why but my error bars are not showing up with the group statement- have tried everything i can think of.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hard to say without program. Attache your FULL program with SAMPLE data. The, it is easier to debug the issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
@Melk wrote:
I am not sure why but my error bars are not showing up with the group statement- have tried everything i can think of.
From the documentation for VBARPARM if you do not specify a Grouporder the default is STACK for the group variable. Limits do not appear when Grouporder=stack. You might try Grouporder=cluster.