pmap_dbl 无法与 lambda 函数一起使用。

huangapple go评论95阅读模式
英文:

pmap_dbl is not working with lambda function

问题

我正在尝试使用pmap_dbl按行找到列的总和。如果我使用sum而不是\(x) sum(x),它可以正常工作。有任何想法吗?

  1. pacman::p_load(tidyverse)
  2. country_df <- tibble(
  3. population = c(328, 38, 30, 56, 1393, 126, 57),
  4. population2 = c(133, 12, 99, 83, 1033, 101, 33),
  5. population3 = c(89, 39, 33, 56, 193, 126, 58),
  6. pop = 45
  7. )
  8. # 正常工作
  9. country_df |> mutate(sum = pmap_dbl(pick(1:3),sum))
  10. #> # A tibble: 7 × 5
  11. #> population population2 population3 pop sum
  12. #> <dbl> <dbl> <dbl> <dbl> <dbl>
  13. #> 1 328 133 89 45 550
  14. #> 2 38 12 39 45 89
  15. #> 3 30 99 33 45 162
  16. #> 4 56 83 56 45 195
  17. #> 5 1393 1033 193 45 2619
  18. #> 6 126 101 126 45 353
  19. #> 7 57 33 58 45 148
  20. # 不正常工作
  21. country_df |> mutate(sum = pmap_dbl(pick(1:3), \(x) sum(x)))
  22. #> Error in `mutate()`:
  23. #> ℹ In argument: `sum = pmap_dbl(pick(1:3), function(x) sum(x))`.
  24. #> Caused by error in `pmap_dbl()`:
  25. #> ℹ In index: 1.
  26. #> Caused by error in `.f()`:
  27. #> ! unused arguments (population = .l[[1]][[i]], population2 = .l[[2]][[i]], population3 = .l[[3]][[i]])
  28. #> Backtrace:
  29. #> ▆
  30. #> 1. ├─dplyr::mutate(country_df, sum = pmap_dbl(pick(1:3), function(x) sum(x)))
  31. #> 2. ├─dplyr:::mutate.data.frame(...)
  32. #> 3. │ └─dplyr:::mutate_cols(.data, dplyr_quosures(...), by)
  33. #> 4. │ ├─base::withCallingHandlers(...)
  34. #> 5. │ └─dplyr:::mutate_col(dots[[i]], data, mask, new_columns)
  35. #> 6. │ └─mask$eval_all_mutate(quo)
  36. #> 7. │ └─dplyr (local) eval()
  37. #> 8. ├─purrr::pmap_dbl(...)
  38. #> 9. │ └─purrr:::pmap_("double", .l, .f, ..., .progress = .progress)
  39. #> 10. │ ├─purrr:::with_indexed_errors(...)
  40. #> 11. │ │ └─base::withCallingHandlers(...)
  41. #> 12. │ └─purrr:::call_with_cleanup(...)
  42. #> 13. └─base::.handleSimpleError(...)
  43. #> 14. └─purrr (local) h(simpleError(msg, call))
  44. #> 15. └─cli::cli_abort(...)
  45. #> 16. └─rlang::abort(...)

创建于2023-07-03,使用reprex v2.0.2

英文:

I am trying to find the sum of columns rowwise using pmap_dbl. If I use sum instead of \(x) sum(x) it is working. Any ideas?

  1. pacman::p_load(tidyverse)
  2. country_df &lt;- tibble(
  3. population = c(328, 38, 30, 56, 1393, 126, 57),
  4. population2 = c(133, 12, 99, 83, 1033, 101, 33),
  5. population3 = c(89, 39, 33, 56, 193, 126, 58),
  6. pop = 45
  7. )
  8. # working
  9. country_df |&gt; mutate(sum = pmap_dbl(pick(1:3),sum))
  10. #&gt; # A tibble: 7 &#215; 5
  11. #&gt; population population2 population3 pop sum
  12. #&gt; &lt;dbl&gt; &lt;dbl&gt; &lt;dbl&gt; &lt;dbl&gt; &lt;dbl&gt;
  13. #&gt; 1 328 133 89 45 550
  14. #&gt; 2 38 12 39 45 89
  15. #&gt; 3 30 99 33 45 162
  16. #&gt; 4 56 83 56 45 195
  17. #&gt; 5 1393 1033 193 45 2619
  18. #&gt; 6 126 101 126 45 353
  19. #&gt; 7 57 33 58 45 148
  20. # not working
  21. country_df |&gt; mutate(sum = pmap_dbl(pick(1:3), \(x) sum(x)))
  22. #&gt; Error in `mutate()`:
  23. #&gt; ℹ In argument: `sum = pmap_dbl(pick(1:3), function(x) sum(x))`.
  24. #&gt; Caused by error in `pmap_dbl()`:
  25. #&gt; ℹ In index: 1.
  26. #&gt; Caused by error in `.f()`:
  27. #&gt; ! unused arguments (population = .l[[1]][[i]], population2 = .l[[2]][[i]], population3 = .l[[3]][[i]])
  28. #&gt; Backtrace:
  29. #&gt; ▆
  30. #&gt; 1. ├─dplyr::mutate(country_df, sum = pmap_dbl(pick(1:3), function(x) sum(x)))
  31. #&gt; 2. ├─dplyr:::mutate.data.frame(...)
  32. #&gt; 3. │ └─dplyr:::mutate_cols(.data, dplyr_quosures(...), by)
  33. #&gt; 4. │ ├─base::withCallingHandlers(...)
  34. #&gt; 5. │ └─dplyr:::mutate_col(dots[[i]], data, mask, new_columns)
  35. #&gt; 6. │ └─mask$eval_all_mutate(quo)
  36. #&gt; 7. │ └─dplyr (local) eval()
  37. #&gt; 8. ├─purrr::pmap_dbl(...)
  38. #&gt; 9. │ └─purrr:::pmap_(&quot;double&quot;, .l, .f, ..., .progress = .progress)
  39. #&gt; 10. │ ├─purrr:::with_indexed_errors(...)
  40. #&gt; 11. │ │ └─base::withCallingHandlers(...)
  41. #&gt; 12. │ └─purrr:::call_with_cleanup(...)
  42. #&gt; 13. └─base::.handleSimpleError(...)
  43. #&gt; 14. └─purrr (local) h(simpleError(msg, call))
  44. #&gt; 15. └─cli::cli_abort(...)
  45. #&gt; 16. └─rlang::abort(...)

<sup>Created on 2023-07-03 with reprex v2.0.2</sup>

答案1

得分: 3

pmapmapmap2函数有些不同,其中您可以传递的值数量是固定的。在pmap函数中,您可以传递任意数量的参数,这些参数可以使用三个点(...)来捕获。

  1. library(dplyr)
  2. library(purrr)
  3. country_df |&gt; mutate(sum = pmap_dbl(pick(1:3), \(...) sum(...)))
  4. # population population2 population3 pop sum
  5. # <dbl> <dbl> <dbl> <dbl> <dbl>
  6. #1 328 133 89 45 550
  7. #2 38 12 39 45 89
  8. #3 30 99 33 45 162
  9. #4 56 83 56 45 195
  10. #5 1393 1033 193 45 2619
  11. #6 126 101 126 45 353
  12. #7 57 33 58 45 148
英文:

pmap is a bit different than map or map2 functions where the number of values that you can pass is fixed. In pmap functions you can pass any number of arguments which can be captured with three dots. (...).

  1. library(dplyr)
  2. library(purrr)
  3. country_df |&gt; mutate(sum = pmap_dbl(pick(1:3), \(...) sum(...)))
  4. # population population2 population3 pop sum
  5. # &lt;dbl&gt; &lt;dbl&gt; &lt;dbl&gt; &lt;dbl&gt; &lt;dbl&gt;
  6. #1 328 133 89 45 550
  7. #2 38 12 39 45 89
  8. #3 30 99 33 45 162
  9. #4 56 83 56 45 195
  10. #5 1393 1033 193 45 2619
  11. #6 126 101 126 45 353
  12. #7 57 33 58 45 148

huangapple
  • 本文由 发表于 2023年7月3日 21:12:30
  • 转载请务必保留本文链接:https://go.coder-hub.com/76605097.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定