BookmarkSubscribeRSS Feed
rebeccabarton
Fluorite | Level 6

Hi, I'd like to colour the plots on my scatter diagram in red. The code I am currently using is:

 

ods graphics / reset imagemap;
title "Data Set 1 - Sales in 2015";
proc sgplot data = work.data1a (where =(online = 2));
scatter x = tradingyears y = sales2015;
label sales2015 = 'Sales in 2015';
run;
ods graphics / reset;
title;

 

I simply want to add like color='red'; but not sure how? TIA

2 REPLIES 2
PeterClemmensen
Tourmaline | Level 20

use the markerattrs option after a forward slash in your scatter statement like this

 

title 'Coloring the markers red in a scatterplot';
proc sgplot data = sashelp.class;
	scatter x=height y=weight / markerattrs=(color=red);
run;
title;

Here is the documentation for the scatter statement

 

http://support.sas.com/documentation/cdl/en/grstatproc/69716/HTML/default/viewer.htm#p1lcbd3lhs3t3bn...

 

and the documentation for Marker Attributes and Symbols, which are controlable with the markerattrs option

 

http://support.sas.com/documentation/cdl/en/grstatproc/69716/HTML/default/viewer.htm#p0i3rles1y5mvsn...

PeterClemmensen
Tourmaline | Level 20

So in your case it will be

 

ods graphics / reset imagemap;
title "Data Set 1 - Sales in 2015";
proc sgplot data = work.data1a (where =(online = 2));
scatter x = tradingyears y = sales2015 / markerattrs=(color=red);
label sales2015 = 'Sales in 2015';
run;
ods graphics / reset;
title;

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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