Dear all,
I run this sas code
proc sgplot data=sashelp.iris;
title 'Fisher (1936) Iris Data';
styleattrs datasymbols=(circlefilled squarefilled starfilled);
scatter x=petallength y=petalwidth / group=species markerattrs=(size=5px);
run;
expect to see CIRCLEFILLED , SQUAREFILLED , STARFILLED
but i have gotten as below
Would you please suggest me what's happen?
* I use SAS9.4 with Windows 10
Hi
You have to set the ATTRPRIORITY= option with the ODS GRAPHICS statement, see example below
ods graphics / attrpriority=none;
proc sgplot data=sashelp.iris;
title 'Fisher (1936) Iris Data';
styleattrs
datasymbols=(circlefilled squarefilled starfilled)
;
scatter x=petallength y=petalwidth / group=species markerattrs=(size=5px);
run;
Bruno
Hi
You have to set the ATTRPRIORITY= option with the ODS GRAPHICS statement, see example below
ods graphics / attrpriority=none;
proc sgplot data=sashelp.iris;
title 'Fisher (1936) Iris Data';
styleattrs
datasymbols=(circlefilled squarefilled starfilled)
;
scatter x=petallength y=petalwidth / group=species markerattrs=(size=5px);
run;
Bruno
Just to comment further on Bruno's correct answer, the reason you need that option in this case is that the default ODS style for HTML output is HTMLBlue. In that particular style, the ATTRPRIORITY is explicitly set to COLOR, which means all of the style colors are exhausted before moving to the next marker symbol or line pattern. The option on the ODS GRAPHICS statement overrides the style setting. Most of the other ODS styles do not set this option, but setting the option on the ODS GRAPHICS statement will guarantee the behavior you want.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.