如何在dplyr中的条件语句中使用mutate_at()内的rox()? [英] How do I use approx() inside mutate_at() with a conditional statement in dplyr?

查看:123
本文介绍了如何在dplyr中的条件语句中使用mutate_at()内的rox()?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用dplyr,管道和rox()插值缺失值。

I want to interpolate missing values using dplyr, piping, and approx().

数据:

test <- structure(list(site = structure(c(3L, 3L, 3L, 3L, 1L, 1L, 1L, 
1L, 2L, 2L, 2L, 2L), .Label = c("lake", "stream", "wetland"), class = "factor"), 
    depth = c(0L, -3L, -4L, -8L, 0L, -1L, -3L, -5L, 0L, -2L, 
    -4L, -6L), var1 = c(1L, NA, 3L, 4L, 1L, 2L, NA, 4L, 1L, NA, 
    NA, 4L), var2 = c(1L, NA, 3L, 4L, NA, NA, NA, NA, NA, 2L, 
    NA, NA)), .Names = c("site", "depth", "var1", "var2"), class = "data.frame", row.names = c(NA, 
-12L))

此代码有效:

library(tidyverse)

# interpolate missing var1 values for each site using approx()
test_int <- test %>% 
  group_by(site) %>% 
  mutate_at(vars(c(var1)),
            funs("i" = approx(depth, ., depth, rule=1, method="linear")[["y"]]))

但是,如果遇到以下情况,该代码将不再起作用:没有至少2个非NA值,例如,

But the code no longer works if it encounters a grouping (site & var) that doesn't have at least 2 non-NA values, e.g.,

# here I'm trying to interpolate missing values for var1 & var2
test_int2 <- test %>% 
  group_by(site) %>% 
  mutate_at(vars(c(var1, var2)),
            funs("i" = approx(depth, ., depth, rule=1, method="linear")[["y"]]))

R适当地抛出此错误:
mutate_impl(.data,点)中的错误:
评估错误:至少需要两个非NA值进行插值。

R appropriately throws this error: Error in mutate_impl(.data, dots) : Evaluation error: need at least two non-NA values to interpolate.

我如何包含条件语句或过滤器,以便它仅尝试对网站具有至少2个非NA值的情况进行插值,并跳过其余的值或返回这些值的NA? / p>

How do I include a conditional statement or filter so that it only tries to interpolate cases where the site has at least 2 non-NA values and skips the rest or returns NA for those?

推荐答案

这将满足您的需求...

This will do what you are looking for...

test_int2 <- test %>% 
             group_by(site) %>% 
             mutate_at(vars(c(var1, var2)),
                       funs("i"=if(sum(!is.na(.))>1) 
                                  approx(depth, ., depth, rule=1, method="linear")[["y"]] 
                                else 
                                  NA))

test_int2
# A tibble: 12 x 6
# Groups:   site [3]
      site depth  var1  var2 var1_i var2_i
    <fctr> <int> <int> <int>  <dbl>  <dbl>
 1 wetland     0     1     1    1.0    1.0
 2 wetland    -3    NA    NA    2.5    2.5
 3 wetland    -4     3     3    3.0    3.0
 4 wetland    -8     4     4    4.0    4.0
 5    lake     0     1    NA    1.0     NA
 6    lake    -1     2    NA    2.0     NA
 7    lake    -3    NA    NA    3.0     NA
 8    lake    -5     4    NA    4.0     NA
 9  stream     0     1    NA    1.0     NA
10  stream    -2    NA     2    2.0     NA
11  stream    -4    NA    NA    3.0     NA
12  stream    -6     4    NA    4.0     NA

这篇关于如何在dplyr中的条件语句中使用mutate_at()内的rox()?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆