绘制Luv颜色;从ggplot2书中复制图6.11

时间:2013-02-12 06:23:51

标签: r colors ggplot2 color-space

我试图从Hadley Wickham的ggplot2 book复制图6.11,它在Luv空间中绘制R颜色;点的颜色代表自己,没有传说是必要的。 enter image description here

以下是两次尝试:

library(colorspace)
myColors <- data.frame("L"=runif(10000, 0,100),"a"=runif(10000, -100, 100),"b"=runif(10000, -100, 100))
myColors <- within(myColors, Luv <- hex(LUV(L, a, b)))
myColors <- na.omit(myColors)
g <- ggplot(myColors, aes(a, b, color=Luv), size=2)
g + geom_point() + ggtitle ("mycolors")

enter image description here

第二次尝试:

other <- data.frame("L"=runif(10000),"a"=runif(10000),"b"=runif(10000))
other <- within(other, Luv <- hex(LUV(L, a, b)))
other <- na.omit(other)
g <- ggplot(other, aes(a, b, color=Luv), size=2)
g + geom_point() + ggtitle("other")

enter image description here

有几个明显的问题:

  1. 这些图表看起来不像图。有任何建议 需要的代码?
  2. 第一次尝试在Luv中生成了很多NA字段 专栏(10,000次运行中只有约3100种命名颜色,而在运行时为~9950) 第二轮)。如果L应该在0-100和u和v之间 在-100和100之间,为什么我在第一次运行时有这么多的NA?我试过四舍五入,但没有帮助。
  3. 为什么我有传奇?
  4. 非常感谢。

1 个答案:

答案 0 :(得分:5)

你得到了奇怪的颜色,因为aes(color = Luv)说“为列Luv中的每个唯一字符串指定颜色”。如果您将color分配到aes之外,如下所示,则表示“使用这些显式颜色”。我认为这样的事情应该与你提出的数字接近。

require(colorspace)
x <- sRGB(t(col2rgb(colors())))
storage.mode(x@coords) <- "numeric" # as(..., "LUV") doesn't like integers for some reason
y <- as(x, "LUV")
DF <- as.data.frame(y@coords)
DF$col <- colors()
ggplot(DF, aes( x = U, y = V)) + geom_point(colour = DF$col)