SHOWPAL {RPMG} | R Documentation |
Show a palette of colors as a bar
Description
Show a palette of colors as a bar
Usage
SHOWPAL( COLLIST , NAME = FALSE, NUM=FALSE, ncol = 5, BACK="transparent")
Arguments
COLLIST |
vector of colors |
NAME |
name of palette |
NUM |
logical, TRUE=show index number |
ncol |
number of colors |
BACK |
Background color, default=NULL |
Value
Graphical Side Effects
Author(s)
Jonathan M. Lees<jonathan.lees@unc.edu>
See Also
see.pals, help.pal , plotpal , helpcolors
Examples
########## make a large screen for a lot of colors
### dev.new(width=12, height=12)
SHOWPAL(colors(), ncol=15, NAME=FALSE)
gcol = setXMCOL()
SHOWPAL(gcol, ncol=10, NAME=TRUE)
#### show index:
SHOWPAL(gcol, ncol=10, NAME=TRUE, NUM=TRUE)
pl = c("grey", "lightblue1", "pink", "darkseagreen2", "gold1",
"chartreuse1", "aquamarine", "plum1", "goldenrod", "maroon1",
"deepskyblue", "palegreen2", "salmon")
SHOWPAL(pl, NAME=TRUE, NUM=TRUE)
SYSCOL = pastel.colors(100)
SHOWPAL(SYSCOL, ncol=10)
SYSCOL = sepia.colors(100)
SHOWPAL(SYSCOL, ncol=10)
SYSCOL = hcl(h=seq(from=0, to=260, length=100) )
SHOWPAL(SYSCOL, ncol=10)
[Package RPMG version 2.2-7 Index]