BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ChrisHemedinger
Community Manager

I'm copying this from a question on Reddit.  I figured there are some experts here that could help, and the Q&A might help the community here as well.

 

 

I'm trying to make jitter plots in SAS 9.4. I'd really like to have the symbols vary but keep the color consistently black, but SAS doesn't like this. I can change my symbol, but not the color. Code is below (in case it help).

Thanks for any help!

 

PROC SGPLOT Data = Simdsigs;
TITLE "Mean Cycle Length: Simulation Data";
SCATTER x = Type y = MCL_R / JITTER
markerfillattrs = (COLOR = 'black')
markerattrs=(SYMBOL=circleFilled)
;
SCATTER x = type y = MCL_F / JITTER
markerattrs=(SYMBOL=diamondFilled)
markerfillattrs = (COLOR = black)
;
xaxis offsetmin=0.2
offsetmax = 0.2;
yaxis label='Mean Cycle Length (ms)';
RUN;
It's time to register for SAS Innovate! Join your SAS user peers in Las Vegas on April 16-19 2024.
1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ

MARKERFILLATTRS should be use only when you want the outline of the marker to be different from the fill. In this case, you should just set the color on the MARKERATTRS, like this:

 

markerattrs=(SYMBOL=circleFilled color=black)

Hope this helps!

Dan 

View solution in original post

2 REPLIES 2
DanH_sas
SAS Super FREQ

MARKERFILLATTRS should be use only when you want the outline of the marker to be different from the fill. In this case, you should just set the color on the MARKERATTRS, like this:

 

markerattrs=(SYMBOL=circleFilled color=black)

Hope this helps!

Dan 

ChrisHemedinger
Community Manager
Thanks! I posted back to Reddit. Hoping the original poster comes here first next time!
It's time to register for SAS Innovate! Join your SAS user peers in Las Vegas on April 16-19 2024.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 972 views
  • 3 likes
  • 2 in conversation