visColormap: Function to define a colormap

Description Usage Arguments Value Note See Also Examples

View source: R/visColormap.r

Description

visColormap is supposed to define a colormap. It returns a function, which will take an integer argument specifying how many colors interpolate the given colormap.

Usage

1
2
3
4
5
visColormap(
colormap = c("bwr", "jet", "gbr", "wyr", "br", "yr", "rainbow", "wb",
"heat",
"terrain", "topo", "cm")
)

Arguments

colormap

short name for the colormap. It can also be a function of 'colorRampPalette'

Value

Note

The input colormap includes:

See Also

visColoralpha

Examples

1
2
3
4
5
# 1) define "blue-white-red" colormap
palette.name <- visColormap(colormap="bwr")

# 2) use the return function "palette.name" to generate 10 colors spanning "bwr"
palette.name(10)

supraHex documentation built on Nov. 26, 2020, 2:01 a.m.