我在理解group_by如何在tidyverse中工作时遗漏了一些东西。示例将阐明:
我已经创建了下面的函数,它采用很少的参数,并计算tibble内部的最佳权重(可能不是最漂亮的,但似乎工作):
library(lpSolveAPI)
library(tidyverse)
weights_fun <- function(data_tbl, objective, constraint){
cols <- c("objective", "constraint")
linear.dt <- data_tbl %>% select_(.dots = cols)
lp.mod <- make.lp(0, NROW(linear.dt))
set.objfn(lp.mod, linear.dt$amount)
lp.control(lp.mod,sense="max")
add.constraint(lp.mod, linear.dt$duration, "=", 6)
add.constraint(lp.mod, rep(1, nrow(linear.dt)), "=", 1)
set.bounds(lp.mod, upper = rep(0.4, nrow(linear.dt)))
set.bounds(lp.mod, lower = rep(0.10, nrow(linear.dt)))
solve(lp.mod)
weights <- round(get.variables(lp.mod), 4)
return(weights)
}
当我在tibble中只有一个组时,这个函数可以很好地工作。我创建函数的方法是尝试通过在一个函数上进行测试来实现它,希望在我稍后对数据进行切片时它会起作用。
weights_fun(one_group, "amount", "duration")
one_group$weights <- weights_fun(one_group, "amount", "duration")
# A tibble: 5 x 6
date country bucket amount duration weights
<date> <chr> <chr> <dbl> <dbl> <dbl>
1 2006-01-31 AT B1 4844.500 1.48475 0.1000
2 2006-01-31 AT B2 8601.000 3.67500 0.1911
3 2006-01-31 AT B3 8518.400 5.39900 0.4000
4 2006-01-31 AT B4 6469.550 6.99950 0.1000
5 2006-01-31 AT B5 7804.533 10.96133 0.2089
然后,我希望可以使用mutate为我的多个组创建新的权重列,如下所示,但我遇到了错误:
three_groups %>%
group_by(date, country) %>%
mutate(weights = weights_fun(., "amount", "duration"))
Adding missing grouping variables: `date`, `country`
Error in mutate_impl(.data, dots) :
Column `weights` must be length 5 (the group size) or one, not 15
我错过了什么?为什么我的函数为每组返回15而不是5?
数据:
one_group <- structure(list(date = structure(c(13179, 13179, 13179, 13179,
13179), class = "Date"), country = c("AT", "AT", "AT", "AT",
"AT"), bucket = c("B1", "B2", "B3", "B4", "B5"), amount = c(4844.5,
8601, 8518.4, 6469.55, 7804.53333333333), duration = c(1.48475,
3.675, 5.399, 6.9995, 10.9613333333333)), .Names = c("date",
"country", "bucket", "amount", "duration"), row.names = c(NA,
-5L), class = c("tbl_df", "tbl", "data.frame"))
three_groups <- structure(list(date = structure(c(13179, 13179, 13179, 13179,
13179, 13179, 13179, 13179, 13179, 13179, 13179, 13179, 13179,
13179, 13179), class = "Date"), country = c("AT", "AT", "AT",
"AT", "AT", "AU", "AU", "AU", "AU", "AU", "BE", "BE", "BE", "BE",
"BE"), bucket = c("B1", "B2", "B3", "B4", "B5", "B1", "B2", "B3",
"B4", "B5", "B1", "B2", "B3", "B4", "B5"), amount = c(4844.5,
8601, 8518.4, 6469.55, 7804.53333333333, 4650.4, 5355.25, 5796.7,
4899.25, 4995, 10151.38, 14484.8666666667, 9910.06666666667,
10507.35, 9644.2), duration = c(1.48475, 3.675, 5.399, 6.9995,
10.9613333333333, 1.8655, 3.493, 4.552, 6.3235, 7.884, 1.8558,
3.55, 5.32466666666667, 7.01975, 12.6736666666667)), class = c("tbl_df",
"tbl", "data.frame"), row.names = c(NA, -15L), .Names = c("date",
"country", "bucket", "amount", "duration"))
额外:正如Jimbou所展示的,分组是有效的,但我的功能不知何故被破坏了。硬编码一些变量将得到这种工作,所以我只需要找出正确的变量引用?
weights_fun1 <- function(objective, constraint){
lp.mod <- make.lp(0, 5)
set.objfn(lp.mod, objective)
lp.control(lp.mod,sense="max")
add.constraint(lp.mod, constraint, "=", 6)
add.constraint(lp.mod, rep(1, 5), "=", 1)
set.bounds(lp.mod, upper = rep(0.4, 5))
set.bounds(lp.mod, lower = rep(0.10, 5))
solve(lp.mod)
weights <- round(get.variables(lp.mod), 4)
return(weights)
}
three_groups %>%
group_by(date, country) %>%
mutate(weights = weights_fun1(amount, duration))
# A tibble: 15 x 6
# Groups: date, country [3]
date country bucket amount duration weights
<date> <chr> <chr> <dbl> <dbl> <dbl>
1 2006-01-31 AT B1 4844.500 1.484750 0.1000
2 2006-01-31 AT B2 8601.000 3.675000 0.1911
3 2006-01-31 AT B3 8518.400 5.399000 0.4000
4 2006-01-31 AT B4 6469.550 6.999500 0.1000
5 2006-01-31 AT B5 7804.533 10.961333 0.2089
6 2006-01-31 AU B1 4650.400 1.865500 0.1000
7 2006-01-31 AU B2 5355.250 3.493000 0.1000
8 2006-01-31 AU B3 5796.700 4.552000 0.1235
9 2006-01-31 AU B4 4899.250 6.323500 0.2765
10 2006-01-31 AU B5 4995.000 7.884000 0.4000
11 2006-01-31 BE B1 10151.380 1.855800 0.1000
12 2006-01-31 BE B2 14484.867 3.550000 0.4000
13 2006-01-31 BE B3 9910.067 5.324667 0.1000
14 2006-01-31 BE B4 10507.350 7.019750 0.2136
15 2006-01-31 BE B5 9644.200 12.673667 0.1864
将回答我自己的问题,但这似乎是工作,只是我的整洁知识很差。感谢金宝。欢迎提供更好的答案。
修改的函数:
weights_fun1 <- function(objective, constraint, rows){
lp.mod <- make.lp(0, rows[1])
set.objfn(lp.mod, objective)
lp.control(lp.mod,sense="max")
add.constraint(lp.mod, constraint, "=", 6)
add.constraint(lp.mod, rep(1, rows[1]), "=", 1)
set.bounds(lp.mod, upper = rep(0.4, rows[1]))
set.bounds(lp.mod, lower = rep(0.10, rows[1]))
solve(lp.mod)
weights <- round(get.variables(lp.mod), 4)
return(weights)
}
three_groups %>%
group_by(date, country) %>%
mutate(rows = n()) %>% #create helper column, as couldn't figure out other way now
mutate(weights = weights_fun1(amount, duration, rows))
# A tibble: 15 x 7
# Groups: date, country [3]
date country bucket amount duration rows weights
<date> <chr> <chr> <dbl> <dbl> <int> <dbl>
1 2006-01-31 AT B1 4844.500 1.484750 5 0.1000
2 2006-01-31 AT B2 8601.000 3.675000 5 0.1911
3 2006-01-31 AT B3 8518.400 5.399000 5 0.4000
4 2006-01-31 AT B4 6469.550 6.999500 5 0.1000
5 2006-01-31 AT B5 7804.533 10.961333 5 0.2089
6 2006-01-31 AU B1 4650.400 1.865500 5 0.1000
7 2006-01-31 AU B2 5355.250 3.493000 5 0.1000
8 2006-01-31 AU B3 5796.700 4.552000 5 0.1235
9 2006-01-31 AU B4 4899.250 6.323500 5 0.2765
10 2006-01-31 AU B5 4995.000 7.884000 5 0.4000
11 2006-01-31 BE B1 10151.380 1.855800 5 0.1000
12 2006-01-31 BE B2 14484.867 3.550000 5 0.4000
13 2006-01-31 BE B3 9910.067 5.324667 5 0.1000
14 2006-01-31 BE B4 10507.350 7.019750 5 0.2136
15 2006-01-31 BE B5 9644.200 12.673667 5 0.1864
我做了这个自定义函数,并把它放在全局之外,这通常会工作。我也试着在主异步木偶函数中移动它,但也不起作用。这是一个简单的函数。在每个page evaluate函数中,我调用它并传递选择器。但是,它的说法没有定义和promise拒绝,这是奇怪的,因为函数不是promise....请帮助 我尝试将函数转换为异步函数,添加了一个新的参数页。然后,我将async添加到我的评估函数中,然后将puppeteer
XQuery提供编写自定义函数的功能。 下面列出了创建自定义函数的准则。 使用关键字来定义函数。 使用当前XML架构中定义的数据类型 将函数体包含在花括号内。 使用XML命名空间前缀函数的名称。 创建自定义函数时使用以下语法。 语法 示例 以下示例显示如何在XQuery中创建用户定义的函数。 XQuery表达式 输出结果 - 验证结果 要测试上述函数,用上面的XQuery表达式替换books.xq
2. 自定义函数 我们不仅可以调用C标准库提供的函数,也可以定义自己的函数,事实上我们已经这么做了:我们定义了main函数。例如: int main(void) { int hour = 11; int minute = 59; printf("%d and %d hours\n", hour, minute / 60); return 0; } main函数的特殊之处在于执行程序时它自动
希望一些比我更了解Azure功能的人能提供帮助。 开箱即用,您可以使用应用程序设置中的APPINSIGHTS_INSTRUMENTATIONKEY设置登录到应用程序Insights...这将在基本级别记录函数请求,然后允许您执行等操作。 这只是被跟踪器或ilogger所掩盖。
$this->db->call_function(); 这个方法用于执行一些 CodeIgniter 中没有定义的 PHP 数据库函数,而且 使用了一种平台独立的方式。举个例子,假设你要调用 mysql_get_client_info() 函数,这个函数 CodeIgniter 并不是原生支持的,你可以这样做: $this->db->call_function('get_client_info')
问题内容: 大家好! 我有这样的电话: 是否可以将其包装在自定义函数中 但 保留回调? 就像是: 将是这样的: 问题答案: 编辑: 最近对此表示赞同,我不得不说我不再这样做。返回a,因此您可以直接使用promise以更一致和更可靠的方式执行我在这里所做的几乎所有工作。 然后用法如下: 当然,我一直都这样做。您可以在实际的成功Callack中执行回调,也可以将回调分配为成功回调: 用法如下所示: