R 語言中的 topo.colors() 函數用於生成指定長度的 Vector,其中每個元素作為 RGB 尺度上的唯一顏色。此函數還返回可用顏色的十六進製代碼。這個十六進製代碼是八位數字。這是因為最後兩位數字指定了透明度級別(其中 FF 是不透明的,00 是透明的)。
用法: topo.colors(n)
參數:
n:返回顏色向量的所需長度
範例1:
# R program to illustrate
# topo.colors function
# Calling topo.colors() function
topo.colors(2)
topo.colors(4)
topo.colors(6)
輸出:
[1] "#4C00FFFF" "#00E5FFFF" [1] "#4C00FFFF" "#00E5FFFF" "#00FF4DFF" "#FFFF00FF" [1] "#4C00FFFF" "#00E5FFFF" "#00FF4DFF" "#E6FF00FF" "#FFFF00FF" "#FFE0B3FF"
範例2:
# R program to illustrate
# topo.colors function
# Using topo.colors() function to
# plot 6 different color
barplot(1:6, col = topo.colors(6))
輸出:
相關用法
- R語言 cm.colors()用法及代碼示例
- R語言 terrain.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 RGB scale in R Language – topo.colors() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。