BookmarkSubscribeRSS Feed

[색상표] SAS에서 지원하는 색과 색상명

Started ‎06-15-2020 by
Modified ‎06-15-2020 by
Views 88

* 출처 : http://support.sas.com/resources/papers/proceedings16/4003-2016.pdf;

* 출처 : https://www.sas.com/content/dam/SAS/en_ca/User%20Group%20Presentations/Edmonton-User-Group/dover-tip...; 

 

proc registry export= "D:\colornames.txt"

              usesashelp 

              startat='COLORNAMES';

 run;

 

 proc fslist file= "D:\colornames.txt" ;

 run;

 

Data colours;

     infile "D:\colornames.txt" dlm='=' dsd truncover;

     length colourname $35. hexcode $35.;

     input colourname $ hexcode $;

     if hexcode =:"hex" then do;

        *remove leading text*;

        hexcode = ksubstr(hexcode,6);

        *replace commas with spaces*;

        hexcode = transtrn(hexcode, ',', ' ');

        output;

     end;

run;

 

Proc Sort Data=colours;

     By Hexcode;

run; 

 

Proc Report Data=colours nowindows;

     Column colourname colourname=clr hexcode;

     Define colourname / "Colour Name";

     Define clr / "Colour";

     Define hexcode / "Hex";

     Compute clr /char length=35;

     call define(_col_,"style","style={background="||colourname||"}");

     endcomp;

run;

quit;

 

SAS에서 지원하는 색과 색상명 1.png

SAS에서 지원하는 색과 색상명 2.png

SAS에서 지원하는 색과 색상명 3.png

SAS에서 지원하는 색과 색상명 4.png

SAS에서 지원하는 색과 색상명 5.png

SAS에서 지원하는 색과 색상명 6.png

Version history
Last update:
‎06-15-2020 01:53 AM
Updated by:
Contributors

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

Article Labels
Article Tags