- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 enquo 和 toString 的使用仍然有点困惑。在下面的示例中,我基本上只是尝试过滤数据框并在最后对行进行求和。我真的不明白为什么 enquo 和 toString 对我想做的第一件事做同样的事情(过滤器 --> 选项 1 和 2 给出相同的结果),但对我想做的第二件事却没有做同样的事情(总和 -->选项 1 有效,但选项 2 给我一个错误)。难道只是因为我在 dplyr 管道中使用它?
library(dplyr)
library(tidyverse)
### define dataframe
dataframe_test <- data.frame(
column_test = c(100,99,99,90,89,50),
month_test = c("2020-09-01", "2020-09-01","2020-09-01", "2020-09-01","2020-10-01","2020-10-01")
)
test_function <- function(df, df_col_indicator, df_col_month, char_month) {
### define variables for enquo, ensym, toString
df_col_indicator_enquo <- enquo(df_col_indicator)
df_col_indicator_ensym <- ensym(df_col_indicator)
df_col_indicator_toString <- toString(df_col_indicator)
df_col_month_ensym <- ensym(df_col_month)
dataframe2 <- df %>%
filter(!!df_col_month_ensym == char_month) %>% # filter for month
slice_max(!!df_col_indicator_ensym, n = 3) %>% # slice top 3 observations
## two options for filter
# option 1
filter(!!df_col_indicator_ensym == df[2, df_col_indicator_toString]) # filter for observations with same observation as second row
# option 2
#filter(!!df_col_indicator_ensym == df[2, !!df_col_indicator_enquo])
## two options for sum
# option 1
bb <- sum(dataframe2[ , df_col_indicator_toString]) # sum up observations
# option 2
#bb <- sum(dataframe2[ , !!df_col_indicator_enquo])
return(bb)
}
test_function(df = dataframe_test, df_col_indicator = "column_test", df_col_month = "month_test" , char_month = "2020-09-01")
编辑:
谢谢大家的回答。呵呵,好吧,我不得不承认这个例子有点愚蠢,但我在这里尽量保持简单。我最初的问题实际上是这个(见下文)。我基本上尝试选择一列中的前 5 个数字。存在三种不同的结果。 1)如果超过5个==100,那么我想随机将5个观察结果存储在列表(指示器)中,将其他观察结果存储在列表(星号)中。 2)如果并非所有观察值都==100,但存在平局(第5、6位具有相同的值),我想随机选择那些具有平局的观察值,并再次将一些观察值放入列表(指标)中,将其他观察值放入列表(星号)中。 3) 如果没有关系,则仅选择前 5 个观察值。我现在的主要问题是,如果我想在最底部的循环(包含所有列)上运行我的函数。不知何故,我总是只得到第一行作为结果...我想我不知何故不明白如何在循环内正确设置函数的变量名称...?
library(dplyr)
library(tidyverse)
remove(list = ls())
dataframe_test <- data.frame(
county_name = c("a", "b","c", "d","e", "f", "g", "h"),
column_test1 = c(100,100,100,100,100,100,50,50),
column_test2 = c(40,90,50,40,40,100,13,14),
column_test3 = c(100,90,50,40,30,40,100,50),
month = c("2020-09-01", "2020-09-01" ,"2020-09-01" ,"2020-09-01" ,"2020-09-01" ,"2020-09-01" ,"2020-08-01","2020-08-01"))
choose_top_5 <- function(df, df_col_indicator, df_col_month, char_month, numb_top, df_col_county) {
### enquo / ensym / deparse
df_col_indicator_enquo <- enquo(df_col_indicator)
df_col_indicator_ensym <- ensym(df_col_indicator)
df_col_month_ensym <- ensym(df_col_month)
df_col_month_enquo = enquo(df_col_month)
### filter month and top 5 observations
df_top <- df %>%
filter(!!df_col_month_ensym == char_month) %>%
slice_max(!!df_col_indicator_ensym, n = numb_top) %>%
select(!!df_col_county, !!df_col_month_ensym, !!df_col_indicator_ensym)
### if there are more than "numb_top" values and all equals to 100 --> randomly pick "numb_top"
if (nrow(df_top) > numb_top &
sum(df_top[ , df_col_indicator ]) == 100*nrow(df_top) ) {
## randomly pick "numb_top" out of all
random_shuffle <- df_top[sample(nrow(df_top)),]
indicator <- random_shuffle[1:numb_top,]
asterisk <- random_shuffle[(numb_top+1):nrow(random_shuffle),]
## return "numb_top" and put names of others in asterisk
return_list <- list(indicator, asterisk)
### if there are more than "numb_top" values but not all 100 (e.g. 100, 100, 100, 99, 99, 99)
## --> pick randomly 99 values
} else if (nrow(df_top) > numb_top) {
### filter for all observations that have the same value as "numb_top"
df_treshold <- df_top %>%
filter(!!df_col_indicator_ensym == df_top[numb_top, df_col_indicator])
## randomly shuffle the observations
random_shuffle <- df_treshold[sample(nrow(df_treshold)),]
## combine observations again an pick "numb_top"
combine <- rbind(df_top[1:(nrow(df_top)-nrow(df_treshold)), ], random_shuffle)
indicator <- combine[1:numb_top,]
asterisk <- combine[(numb_top+1):nrow(combine),]
## return "numb_top" and put names of others in asterisk
return_list <- list(indicator, asterisk)
### if there are not more than "numb_top" values
} else {
indicator <- df_top
asterisk <- NA
## return "numb_top", asterisk is NA
return_list <- list(indicator, asterisk)
}
return(return_list)
}
### function for 1 column
a=choose_top_5(df = dataframe_test, df_col_indicator = "column_test3",
df_col_month = "month", char_month = "2020-09-01", numb_top = 5,
df_col_county = "county_name")
a
### function over all columns and store in list
all_indicators <- c("column_test1","column_test2","column_test3")
my_list <- list()
for (i in all_indicators) {
my_list[[i]] <- choose_top_5(df = dataframe_test, df_col_indicator = i,
df_col_month = "month", char_month = "2020-09-01", numb_top = 5,
df_col_county = "county_name")
}
my_list
最佳答案
添加到上面的 Allans 答案中:
通常,您不能在不支持准引用的函数内使用强制运算符!!
。准引用。然而,正如莱昂内尔·亨利指出的here和 here即将推出的 {rlang} 版本可能会包含一个名为 blast()
的函数,用于立即求值的准引用。下面我用你的例子。在最后一行中,您可以看到如何在本身不支持准引用的基本 R 函数中使用 !!
。
library(tidyverse)
library(rlang)
### define dataframe
dataframe_test <- data.frame(
column_test = c(100,99,99,90,89,50),
month_test = c("2020-09-01", "2020-09-01","2020-09-01", "2020-09-01","2020-10-01","2020-10-01")
)
blast <- function(expr, env = caller_env()) {
eval_bare(enexpr(expr), env)
}
test_function <- function(df, df_col_indicator, df_col_month, char_month) {
df_col_indicator_enquo <- enquo(df_col_indicator)
df_col_indicator_ensym <- ensym(df_col_indicator)
df_col_month_enquo <- enquo(df_col_month)
temp <- df %>%
filter(!!df_col_month_enquo == char_month) %>%
slice_max(!!df_col_indicator_enquo, n = 3) %>%
filter(!!df_col_indicator_enquo == df %>%
select(!!df_col_indicator_enquo) %>%
pluck(1, 2))
# with `blast()` we can use the forcing operator !! inside sum(`$`...)
blast(sum(`$`(temp, !! df_col_indicator_ensym)))
}
test_function(df = dataframe_test, column_test, month_test , "2020-09-01")
#> [1] 198
由reprex package于2020年11月5日创建(v0.3.0)
关于r - 函数内 enquo() 和 toString() 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64692609/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!