Procedure features: |
GREPLAY
statement options:
|
CDEF
statement |
CMAP statement |
LIST statement |
|
Sample library member: |
GRECRCM1
|
This example uses the CDEF statement to define a color
map. The LIST statement is used in this example to display the color map definition
in the SAS log. Defining a Color Map (GRECRCM1) shows a partial SAS log listing.
|
goptions reset=all border; |
|
proc greplay cc=clrmap gout=excat nofs; |
|
cdef mycolor des="Special Color Map"
1 / pink : red
2 / cyan : blue
3 / lig : green; |
|
cmap mycolor;
list cmap;
quit; |
Defining a Color Map (GRECRCM1)
.
.
75 /* list color map contents */
76 list cmap;
MYCOLOR Special Color Map
FROM TO
1 PINK RED
2 CYAN BLUE
3 LIG GREEN
77 quit;
.
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.