生成指定长度的向量,每个元素作为 R 语言中 RGB 光谱中 RG 比例上的唯一颜色 – terrain.colors()函数
R 语言中的terrain.colors()
函数用于生成指定长度的向量,其中每个元素作为 RGB 光谱中 RG 比例上的唯一颜色。此函数还返回可用颜色的十六进制代码。这个十六进制代码是八位数字。这是因为最后两位数字指定透明度级别(其中 FF 是不透明的,00 是透明的)。
Syntax: terrain.colors(n)
Parameters:
n: desired length of the returned color vector
示例 1:
# R program to illustrate
# terrain.colors function
# Calling terrain.colors() function
terrain.colors(2)
terrain.colors(4)
terrain.colors(6)
输出:
[1] "#00A600FF" "#F2F2F2FF"
[1] "#00A600FF" "#E6E600FF" "#ECB176FF" "#F2F2F2FF"
[1] "#00A600FF" "#63C600FF" "#E6E600FF" "#EAB64EFF" "#EEB99FFF" "#F2F2F2FF"
示例 2:
# R program to illustrate
# terrain.colors function
# Using terrain.colors() function to
# plot 6 different color
barplot(1:6, col = terrain.colors(6))
输出: