在某些时候ggplot需要有可用的数据来绘制它,并且包的工作方式禁止简单地做你想做的事。如果您知道 x 和 y 轴限制,我想您可以设置一个空白图,然后遍历 的 9 个值q
,为其生成数据,并向现有的绘图对象q
添加一个图层。geom_line
但是,您必须自己为每一层生成颜色。
如果这代表您遇到的问题的大小,我不会太担心内存占用。我们只讨论长度为 900 的两个向量
> object.size(rnorm(900))
7240 bytes
范围内的 100 个值x
似乎足以给出平滑图。
for
循环将图层添加到ggplot
require("ggplot2")
## something to replicate ggplot's colour palette, sure there is something
## to do this already in **ggplot** now...
ggHueColours <- function(n, h = c(0, 360) + 15, l = 65, c = 100,
direction = 1, h.start = 0) {
turn <- function(x, h.start, direction) {
(x + h.start) %% 360 * direction
}
if ((diff(h) %% 360) < 1) {
h[2] <- h[2] - 360 / n
}
hcl(h = turn(seq(h[1], h[2], length = n), h.start = h.start,
direction = direction), c = c, l = l)
}
f = function(p,q=0.9) {1-(1-(p*q)^3)^1024}
x = seq(0.0,0.99,by=0.01)
q = seq(0.1,0.9,by=0.1)
cols <- ggHueColours(n = length(q))
for(i in seq_along(q)) {
df <- data.frame(y = f(x, q[i]), x = x)
if(i == 1) {
plt <- ggplot(df, aes(x = x, y = y)) + geom_line(colour = cols[i])
} else {
plt <- plt + geom_line(data = df, colour = cols[i])
}
}
plt
这使:
我会把剩下的留给你——我对ggplot不够熟悉,无法手动绘制图例。