🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 12-07-2017 09:21 AM
(1379 views)
Hello All,
I'm using proc sgplot with 'scatter' and 'series' as statements and 'group' option in both statements.
I would like to have a legend like the one in the attached file.
Any suggestion please?
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
proc sgplot data=sashelp.class;
series y=age x=height / markers group=sex;
run;
Just use a SERIES statement and make the markers through it.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
proc sgplot data=sashelp.class;
series y=age x=height / markers group=sex;
run;
Just use a SERIES statement and make the markers through it.