当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R adjustcolor 方便地在一个或多个方向上调整颜色


R语言 adjustcolor 位于 grDevices 包(package)。

说明

通过 空间中一个或多个坐标上的 “turning knobs” 调整或修改颜色向量,通常是通过向上或向下缩放它们。

用法

adjustcolor(col, alpha.f = 1, red.f = 1, green.f = 1, blue.f = 1,
            offset = c(0, 0, 0, 0),
            transform = diag(c(red.f, green.f, blue.f, alpha.f)))

参数

col

颜色向量,采用 col2rgb() 接受的任何格式

alpha.f

修改不透明度 alpha 的因子;通常在 [0,1] 中

red.f , green.f , blue.f

分别修改颜色的 “red-”、“green-” 或 “blue-”ness 的因子。

offset

长度为 4 到偏移 x := c(r,g,b,alpha) 的数值向量,其中 xcol2rgb(col, alpha=TRUE) 缩放结果。

transform

应用于 x + offset 的 4x4 数字矩阵。

col 长度相同的颜色向量,实际上是 rgb() 的结果。

例子

## Illustrative examples :
opal <- palette("default")
stopifnot(identical(adjustcolor(1:8,       0.75),
                    adjustcolor(palette(), 0.75)))
cbind(palette(), adjustcolor(1:8, 0.75))

##  alpha = 1/2 * previous alpha --> opaque colors
x <- palette(adjustcolor(palette(), 0.5))

sines <- outer(1:20, 1:4, function(x, y) sin(x / 20 * pi * y))
matplot(sines, type = "b", pch = 21:23, col = 2:5, bg = 2:5,
        main = "Using an 'opaque ('translucent') color palette")

x. <- adjustcolor(x, offset = c(0.5, 0.5, 0.5, 0), # <- "more white"
                  transform = diag(c(.7, .7, .7, 0.6)))
cbind(x, x.)
op <- par(bg = adjustcolor("goldenrod", offset = -rep(.4, 4)), xpd = NA)
plot(0:9, 0:9, type = "n", axes = FALSE, xlab = "", ylab = "",
     main = "adjustcolor() -> translucent")
text(1:8, labels = paste0(x,"++"), col = x., cex = 8)
par(op)

## and

(M <- cbind( rbind( matrix(1/3, 3, 3), 0), c(0, 0, 0, 1)))
adjustcolor(x, transform = M)

## revert to previous palette: active
palette(opal)

也可以看看

rgbcol2rgb。对于更复杂的颜色结构:convertColor

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Adjust Colors in One or More Directions Conveniently。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。