BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Ian_Liu
Calcite | Level 5

http://documentation.sas.com/?docsetId=grstatgraph&docsetTarget=p08qhdljvzthmnn1vkbule00ad6r.htm&doc...

 

Hi, Does anyone know how to change the line color of scatterplot, including xerrorupper & yerrorupper, to black in the above sample code "Example 3: Dot Plot" ?

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

Use the MARKERATTRS= and ERRORBARATTRS= options:

 

scatterplot x=mean y=age / name="scatter"
markerattrs=(symbol=circlefilled color=black)
errorbarattrs=(color=black)
xerrorupper=eval(mean + std)
xerrorlower=eval(mean - std)
legendlabel="Height (Mean), 1 Standard Deviation";

View solution in original post

2 REPLIES 2
Rick_SAS
SAS Super FREQ

Use the MARKERATTRS= and ERRORBARATTRS= options:

 

scatterplot x=mean y=age / name="scatter"
markerattrs=(symbol=circlefilled color=black)
errorbarattrs=(color=black)
xerrorupper=eval(mean + std)
xerrorlower=eval(mean - std)
legendlabel="Height (Mean), 1 Standard Deviation";

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1629 views
  • 0 likes
  • 2 in conversation