我正在尝试编写一个带有数字列的tidyeval函数,用limit
的值替换某个limit
以上的值,将该列转换为因子然后替换因子级别等于limit
,其等级为“limit +”。
例如,我试图用sepal.width替换3以上的任何值,然后将该因子级别重命名为3+
。
作为一个例子,这里是我试图使其与虹膜数据集一起使用的方法。但是,fct_recode()函数没有正确地重命名因子级别。
plot_hist <- function(x, col, limit) {
col_enq <- enquo(col)
x %>%
mutate(var = factor(ifelse(!!col_enq > limit, limit,!!col_enq)),
var = fct_recode(var, assign(paste(limit,"+", sep = ""), paste(limit))))
}
plot_hist(iris, Sepal.Width, 3)
答案 0 :(得分:5)
要修复最后一行,我们可以使用特殊符号:=
,因为我们需要在表达式的左侧设置值。对于RHS,我们需要强制转换为角色,因为fct_recode
期望右侧有一个字符向量。
library(tidyverse)
plot_hist <- function(x, col, limit) {
col_enq <- enquo(col)
x %>%
mutate(var = factor(ifelse(!!col_enq > limit, limit, !!col_enq)),
var = fct_recode(var, !!paste0(limit, "+") := as.character(limit)))
}
plot_hist(iris, Sepal.Width, 3) %>%
sample_n(10)
#> Sepal.Length Sepal.Width Petal.Length Petal.Width Species var
#> 40 5.1 3.4 1.5 0.2 setosa 3+
#> 98 6.2 2.9 4.3 1.3 versicolor 2.9
#> 7 4.6 3.4 1.4 0.3 setosa 3+
#> 99 5.1 2.5 3.0 1.1 versicolor 2.5
#> 76 6.6 3.0 4.4 1.4 versicolor 3+
#> 77 6.8 2.8 4.8 1.4 versicolor 2.8
#> 85 5.4 3.0 4.5 1.5 versicolor 3+
#> 119 7.7 2.6 6.9 2.3 virginica 2.6
#> 110 7.2 3.6 6.1 2.5 virginica 3+
#> 103 7.1 3.0 5.9 2.1 virginica 3+