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))
輸出:
相關用法
- R語言 cm.colors()用法及代碼示例
- R語言 topo.colors()用法及代碼示例
- R語言 heat.colors()用法及代碼示例
- R語言 scale()用法及代碼示例
- R語言 rgb()用法及代碼示例
- R語言 col2rgb()用法及代碼示例
- R語言 make.unique()用法及代碼示例
- R語言 rainbow()用法及代碼示例
- R語言 gl()用法及代碼示例
- R語言 seq_len()用法及代碼示例
- R語言 rgb2hsv()用法及代碼示例
- R語言 unlist()用法及代碼示例
- R語言 toString()用法及代碼示例
- R語言 as.vector()用法及代碼示例
- R語言 is.vector()用法及代碼示例
- R語言 rep_len()用法及代碼示例
- R語言 seq_along()用法及代碼示例
注:本文由純淨天空篩選整理自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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。