- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
library(tidyverse)
set.seed(1)
graph.data <- tibble(cal.date = as.Date(40100:40129, origin = "1899-12-30"),
random_num = rnorm(30, 8, 5))
# A tibble: 30 x 2
cal.date random_num
<date> <dbl>
1 2009-10-14 4.87
2 2009-10-15 8.92
3 2009-10-16 3.82
4 2009-10-17 16.0
5 2009-10-18 9.65
6 2009-10-19 3.90
7 2009-10-20 10.4
8 2009-10-21 11.7
9 2009-10-22 10.9
10 2009-10-23 6.47
# ... with 20 more rows
child_function
和
parent_function
.
child_function <- function(df, variable, hor.line = 6) {
variable <- enquo(variable)
df <- mutate(mutation = 2 * !!variable, horizontal.line = hor.line)
}
parent_function <- function(df, date, variable, hor.line = 6) {
date <- enquo(date)
variable <- enquo(variable)
hor.line <- enquo(hor.line)
df <- child_function(df, !!variable, !!hor.line) %>% print()
p <- ggplot(df, aes(date, mutation)) +
geom_point() +
geom_hline(aes(yintercept = !!hor.line))
p
}
parent_function(graph.data, date = cal.date, variable = random_num, hor.line=8)
dplyr
tidyeval 语法。我的功能有什么问题?
最佳答案
需要进行一些清理,但现在它应该可以工作了:
library(tidyverse)
set.seed(1)
graph.data <- tibble(cal.date = as.Date(40100:40129, origin = "1899-12-30"),
random_num = rnorm(30, 8, 5))
child_function <- function(df, variable, hor.line = 6) {
variable <- enquo(variable)
df <- mutate(df, mutation := 2 * !! variable, horizontal.line := hor.line)
}
parent_function <- function(df, date, variable, hor.line = 6) {
date <- enquo(date)
variable <- enquo(variable)
df <- child_function(df, !! variable, hor.line) %>% print()
p <- ggplot(df, aes(!! date, mutation)) +
geom_point() +
geom_hline(aes(yintercept = hor.line))
p
}
parent_function(graph.data, date = cal.date, variable = random_num, hor.line=8)
!!
或
enquo
在没有必要的地方,反之亦然。
关于r - 简单的嵌套函数和 dplyr tidyeval,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53265879/
假设我有两个函数,我想将 a 嵌套在 b 中: library(dplyr) library(rlang) a % head() Sepal.Length Sepal.Width Petal.Le
我想使用 dplyr >= 0.7 删除列向量 library(dplyr) data(mtcars) rem_cols % select(-one_of(rem_cols)) 关于以
我正在尝试创建一个将列名称列表传递给 dplyr 函数的函数。如果列名称列表以 ... 形式给出,我知道如何执行此操作,如 tidyeval 文档中所述: df % group_by(!!!g
我正在尝试创建一个将列名称列表传递给 dplyr 函数的函数。如果列名称列表以 ... 形式给出,我知道如何执行此操作,如 tidyeval 文档中所述: df % group_by(!!!g
我有一个 tibble 列 foo 包含 tibble 中另一列的名称。我想根据 foo 中命名的列进行过滤: mtcars %>% mutate(foo = c(rep("carb", 16),
我在 R 中有一个简单的函数,... 使用 tidyeval。是否可以将这些更改为字符串? simple_paste % paste(collapse="_x_") } si
如果我想明确覆盖范围,我可以使用 .data像这样的代词 library(dplyr) cyl # A tibble: 32 x 1 #> cyl_plus_one #>
我正在尝试包装 dplyr::filter在一个函数中,当有多个时 filter条件,然后它们作为向量或列表传递。请参阅此最小示例: filter_wrap 5) obtained 5) stop
与Tidy evaluation programming with dplyr::case_when有些相关和 Making tidyeval function inside case_when ,我
我正在使用 tidyeval 编写一个简单的函数,我需要将参数传递给公式接口(interface)。虽然我已经设法构建了该函数的工作版本,但它似乎不适用于 for 循环。 函数 foo Bayes
我正在尝试使用 tidyeval 进行编程。 我想编写一个函数来为选定的结果变量运行逻辑回归模型: library(tidyverse) set.seed(1234) df 如果我们还需要使用tid
考虑这个简单的例子 library(dplyr) dataframe dataframe # A tibble: 4 x 3 id group value 1 1
最新版本的 dplyr 不推荐使用下划线版本的函数,例如 filter_,转而使用 tidy evaluation . 新方式下划线形式的新形式是什么?如何使用 R CMD 检查来避免 undefin
我们可以定义一个使用动态列名的函数,然后在map中使用它。请注意 ListCol 中的 tibbles 如何具有列名称 a 和 b(取自原始文件中的 Letter 列)蒂 bool 。 library
接上较早的话题,( Use string as filter in dplyr? ),新的 tidyeval 会是什么?对此的回答是,因为 filter_ 已被弃用。 有没有办法在 dplyr 中使用
library(tidyverse) set.seed(1) graph.data 1 2009-10-14 4.87 2 2009-10-15 8.
所以这个例子基本上来自https://tidyeval.tidyverse.org/dplyr.html#patterns-for-single-arguments它工作得很好: library(ti
对于造成的困惑,我深表歉意,但最终,我发布的第一个示例(在页面底部)并没有帮助我弄清楚 tidyeval 如何与 mutate 一起工作,所以我添加了一个新示例。 我想创建一个接受三个参数的函数: 一
这个问题在这里已经有了答案: How to take in text/character argument without quotes (2 个答案) 关闭 7 个月前。 我写了一个函数。在我的函
library(tidyverse) input_name expr: ^filter(data, "birth_year" == 19) env: global 第 6 行 exp
我是一名优秀的程序员,十分优秀!