當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 terrain.colors()用法及代碼示例


R語言中的terrain.colors()函數用於生成指定長度的Vector,每個元素作為RGB頻譜中RG尺度上的唯一顏色。此函數還返回可用顏色的十六進製代碼。這個十六進製代碼是八位數字。這是因為最後兩位數字指定了透明度級別(其中 FF 是不透明的,00 是透明的)。

用法: terrain.colors(n)

參數:
n:返回顏色向量的所需長度

範例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))

輸出:
terrain.colors()

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Generate a Vector of specified length with each element as a unique color on RG scale in RGB spectrum in R Language – terrain.colors() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。