我试图使用基本图形在我的数据周围绘制错误区域。我已经弄清楚如何使用多边形来完成它,但如果我的数据中有任何NA
值,它就会开始非常糟糕。
dat <- rnorm(10, mean = 1:10)
depth <- 11:20
sd <- rnorm(10, mean = 1.5, sd = 0.5)
col <- "blue"
alpha <- .2
col <- adjustcolor(col, alpha.f = alpha)
par(mfrow = c(1,2))
plot(dat, depth, type = "o", main = "No NAs in dat or depth")
x <- c(dat - sd, rev(dat + sd))
y <- c(depth, rev(depth))
polygon(x = x, y = y, col = col, border = NA)
dat[7] <- NA
plot(dat, depth, type = "o", main = "NAs in dat or depth")
x <- c(dat - sd, rev(dat + sd))
y <- c(depth, rev(depth))
polygon(x = x, y = y, col = col, border = NA)
似乎NA值将下多边形划分为两个多边形。我喜欢它做的是将它保持为一个多边形。
答案 0 :(得分:2)
以下是使用rle
函数的可能解决方案:
set.seed(123) # added for reproducibility
dat <- rnorm(10, mean = 1:10)
depth <- 11:20
sd <- rnorm(10, mean = 1.5, sd = 0.5)
col <- "blue"
alpha <- .2
col <- adjustcolor(col, alpha.f = alpha)
par(mfrow = c(1,2))
plot(dat, depth, type = "o", main = "No NAs in dat or depth")
x <- c(dat - sd, rev(dat + sd))
y <- c(depth, rev(depth))
polygon(x = x, y = y, col = col, border = NA)
dat[7] <- NA
plot(dat, depth, type = "o", main = "NAs in dat or depth")
x <- c(dat - sd, rev(dat + sd))
y <- c(depth, rev(depth))
############################################
## code to print error range starts here: ##
############################################
enc <- rle(!is.na(dat))
endIdxs <- cumsum(enc$lengths)
for(i in 1:length(enc$lengths)){
if(enc$values[i]){
endIdx <- endIdxs[i]
startIdx <- endIdx - enc$lengths[i] + 1
subdat <- dat[startIdx:endIdx]
subsd <- sd[startIdx:endIdx]
subdepth <- depth[startIdx:endIdx]
x <- c(subdat - subsd, rev(subdat + subsd))
y <- c(subdepth, rev(subdepth))
polygon(x = x, y = y, col = col, border = NA)
}
}
这个想法是为每个连续的非NA块绘制一个多边形。
由于rle
,给定一个向量,返回具有相同值的连续块的长度和值,我们用它来识别非NA的块并绘制一个子集原始{{1 },dat
和depth
向量。
答案 1 :(得分:1)
答案 2 :(得分:1)
如果你想尝试ggplot2
解决方案,请点击这里:
将样本数据放入数据框并添加低和高列(将一个数据点设置为NA
后):
> d=data.frame(dat=dat, depth=depth)
> d$dat[7]=NA
> d$high=d$dat+sd
> d$low=d$dat-sd
然后是一个单行:
> require(ggplot2)
> ggplot(d,aes(x=depth,y=dat)) +
geom_ribbon(aes(ymax=high,ymin=low),
fill=adjustcolor("blue",.2) ) +
geom_line() +
geom_point() +
coord_flip()