Hello,
I would like to generate a graph by using proc sgplot. It works but the lines are all black. I would like to attibute differents colors for each group value. I don't know where (and how) I should specify colors
my code is
ODS RTF startpage = yes FILE = "&filename." style = journal ;
proc sgplot data = BEH_SUITE_INDIC ;
xaxis type=discrete;
series x = ANNEE_AMO_SUITE y = ratio / group = DUREE ;
xaxis display=(nolabel);
yaxis display=(nolabel);
run;
ODS RTF CLOSE ;
thanks a lot in advance for your help
I works ! thanks warren ! have a goodday !
First stop on any graph question is this blog:
http://blogs.sas.com/content/graphicallyspeaking/
It has code examples for any kind of graph you can think of with code examples. A quick search there shows hundreds of examples:
@RW9 provided good advice. Additionallly, replace journal (a black and white style) with something like Sapphire (a color style suitable for RTF). Also, check out the styles comparison section of this sas/stat chapter on ods graphics.
https://support.sas.com/documentation/onlinedoc/stat/132/odsgraph.pdf
hI Warren
thanks for your respons. I put sapphire. Now my group lines are all blue. What I would like is to get one different color per group.
thanks
Group colors are definitely not all blue.
ods rtf style=sapphire image_dpi=300;
proc sgplot data=sashelp.iris;
reg y=petalwidth x=petallength / group=species;
run;
ods rtf close;
I would have to see something reproducible.
I works ! thanks warren ! have a goodday !
Please stop marking your own responses as the correct answer. If @WarrenKuhfeld 's information helped you, mark his answer as the correct one so that it appears at the top of the page, i.e. question/answer.
ok sorry !
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.
Ready to level-up your skills? Choose your own adventure.