如何在R中围绕NA值绘制多边形?

时间:2015-10-27 15:43:53

标签: r na

我试图使用基本图形在我的数据周围绘制错误区域。我已经弄清楚如何使用多边形来完成它,但如果我的数据中有任何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)

这给了我以下图片: The desired outcome if there are no NAs (left panel) and the error I get when there are NAs (right panel)

似乎NA值将下多边形划分为两个多边形。我喜欢它做的是将它保持为一个多边形。

3 个答案:

答案 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)
  }
}

enter image description here

这个想法是为每个连续的非NA块绘制一个多边形。

由于rle,给定一个向量,返回具有相同值的连续块的长度和值,我们用它来识别非NA的块并绘制一个子集原始{{1 },datdepth向量。

答案 1 :(得分:1)

这可以接受吗?

polygon(x = x[!is.na(x)], y = y[!is.na(x)], col = col, border = NA)

enter image description here

答案 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()

flipped ribbon