当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R dplyr cumall 任何、全部和平均值的累积版本


dplyr 提供了 cumall()cumany()cummean() 来完成 R 的一组累积函数。

用法

cumall(x)

cumany(x)

cummean(x)

参数

x

对于 cumall()cumany() ,逻辑向量;对于 cummean() 为整数或数值向量。

x 长度相同的向量。

累积逻辑函数

这些与 filter() 结合使用特别有用:

  • cumall(x) :第一个 FALSE 之前的所有情况。

  • cumall(!x) :第一个 TRUE 之前的所有情况。

  • cumany(x) :第一个 TRUE 之后的所有情况。

  • cumany(!x) :第一个 FALSE 之后的所有情况。

例子

# `cummean()` returns a numeric/integer vector of the same length
# as the input vector.
x <- c(1, 3, 5, 2, 2)
cummean(x)
#> [1] 1.00 2.00 3.00 2.75 2.60
cumsum(x) / seq_along(x)
#> [1] 1.00 2.00 3.00 2.75 2.60

# `cumall()` and `cumany()` return logicals
cumall(x < 5)
#> [1]  TRUE  TRUE FALSE FALSE FALSE
cumany(x == 3)
#> [1] FALSE  TRUE  TRUE  TRUE  TRUE

# `cumall()` vs. `cumany()`
df <- data.frame(
  date = as.Date("2020-01-01") + 0:6,
  balance = c(100, 50, 25, -25, -50, 30, 120)
)
# all rows after first overdraft
df %>% filter(cumany(balance < 0))
#>         date balance
#> 1 2020-01-04     -25
#> 2 2020-01-05     -50
#> 3 2020-01-06      30
#> 4 2020-01-07     120
# all rows until first overdraft
df %>% filter(cumall(!(balance < 0)))
#>         date balance
#> 1 2020-01-01     100
#> 2 2020-01-02      50
#> 3 2020-01-03      25

源代码:R/funs.R

相关用法


注:本文由纯净天空筛选整理自Hadley Wickham等大神的英文原创作品 Cumulativate versions of any, all, and mean。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。