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


R colors 顏色名稱


R語言 colors 位於 grDevices 包(package)。

說明

返回內置顏色名稱R知道有關。

用法

colors (distinct = FALSE)
colours(distinct = FALSE)

參數

distinct

邏輯指示返回的顏色是否應該全部不同;例如,"snow""snow1" 實際上是 RGB 空間中的同一點。

細節

這些顏色名稱可以與圖形函數中的 col= 規範一起使用。

可以使用基元 rgbhsvhcl 或派生的 rainbowheat.colors 等創建更廣泛的顏色。

"transparent" 不是顏色,因此未列出,但它被接受為顏色規範。

包含所有內置顏色名稱的字符向量。

例子

cl <- colors()
length(cl); cl[1:20]

length(cl. <- colors(TRUE))
## only 502 of the 657 named ones

## ----------- Show all named colors and more:
demo("colors")
## -----------

也可以看看

palette 用於設置 par(col= ) 的顏色 ‘palette’ ; rgbhsvhclgrayrainbow 是一個很好的例子;和 heat.colorstopo.colors 用於圖像。

col2rgb 用於轉換為 RGB 數字和擴展示例。

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Color Names。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。