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 Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 1490 views
  • 0 likes
  • 2 in conversation