- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何确保使用 data.table
的非标准评估1 正在从父框架继承所需的变量?
根据我对动态作用域的理解,我的下面代码应该可以工作,但实际上没有。我做错了什么?
我有一个列表,其中包含许多我想应用于单个 data.table
的函数,它返回 bool 检查和消息(当检查为 TRUE 时)。例如,假设我正在审计一个账户表。
library(data.table)
#----- Example data -----------------------------------------------------------
n <- 100
set.seed(123)
df <- data.table( acct_id = paste0('ID',seq(n)),
acct_balance = round(pmax(rnorm(n,1000,5000),0)),
days_overdue = round(pmax(rnorm(n,20,20),0))
)
#----- Example list of rules to check (real case has more elements)------------
AuditRules <- list(
list(
msg_id = 1,
msg_cat = 'Balance',
cond_fn = function(d) d[, acct_balance > balance_limit ],
msg_txt =
function(d) d[, paste('Account',acct_id,'balance is',
acct_balance - balance_limit,
'over the limit.')]
),
list(
msg_id = 2,
msg_cat = 'Overdue',
cond_fn = function(d) d[, days_overdue > grace_period ],
msg_txt =
function(d) d[, paste('Account',acct_id,'is overdue',
days_overdue-grace_period,
'days beyond grace period.')]
)
)
我正在遍历规则列表并检查每个规则的数据集。
这在全局环境中运行良好。
balance_limit <- 1e4
grace_period <- 14
audit <- rbindlist(
lapply(AuditRules, function(item){
with( item,
df[ cond_fn(df),
.(msg_id,
msg_cat,
msg_txt = msg_txt(.SD) )
]
)
} )
)
print(head(audit), row.names=FALSE)
#----------------- Result --------------------------------------
# msg_id msg_cat msg_txt
# 1 Balance Account ID44 balance is 1845 over the limit.
# 1 Balance Account ID70 balance is 1250 over the limit.
# 1 Balance Account ID97 balance is 1937 over the limit.
# 2 Overdue Account ID2 is overdue 11 days beyond grace period.
# 2 Overdue Account ID3 is overdue 1 days beyond grace period.
# 2 Overdue Account ID6 is overdue 5 days beyond grace period.
rm(balance_limit, grace_period) # see "aside"
auditTheData <- function(d, balance_limit = 1e4, grace_period=14){
rbindlist(
lapply(AuditRules, function(item){
with( item,
d[ cond_fn(d),
.(msg_id,
msg_cat,
msg_txt = msg_txt(.SD) )
]
)
} )
)
}
auditTheData(df)
导致错误:
Error in eval(jsub, SDenv, parent.frame()) :
object 'balance_limit' not found
这不是 with()
的问题,尽管我读过 (?with
) 通常应该避免将它用于编程。这也行不通:
auditTheData2 <- function(d, balance_limit = 1e4, grace_period=14){
rbindlist(
lapply(AuditRules, function(item){
d[ item[['cond_fn']](d),
.(msg_id,
msg_cat,
msg_txt = item[['msg_txt']](.SD) )
]
} )
)
}
auditTheData2(df) # Same error
旁白:如果您不在“什么不起作用”函数之前执行 rm(balance_limit, grace_period)
—— 即,将它们留在全局环境中-- 你得到了想要的结果。所以看起来 function(item)
得到 lapply
-ed 可以“看到”全局环境而不是父环境(AuditTheData
).
1我在这里使用的“非标准”是不科学意义上的“不寻常”。我知道什么算作非标准,但这是另一个(而且太宽泛了?)问题。
最佳答案
这似乎可行:
ar <- list(
list(
cat = 'Balance',
cond_expr = quote(acct_balance > balance_limit),
msg_expr = quote(sprintf('Account %s balance is %s over the limit.',
acct_id,
acct_balance - balance_limit))
),
list(
cat = 'Overdue',
cond_expr = quote(days_overdue > grace_period),
msg_expr = quote(sprintf('Account %s is overdue %s days beyond grace period.',
acct_id,
days_overdue-grace_period))
)
)
audDT = rbindlist(rapply(ar, list, "call", how = "replace"), id="msg_id")
auditem = function(d, a, balance_limit = 1e4, grace_period = 14){
a[, {
cond = cond_expr[[1]]
msg = msg_expr[[1]]
.(txt = d[eval(cond), eval(msg)])
}, by=.(msg_id, cat)]
}
例如……
> head(auditem(df, audDT))
msg_id cat txt
1: 1 Balance Account ID44 balance is 1845 over the limit.
2: 1 Balance Account ID70 balance is 1250 over the limit.
3: 1 Balance Account ID97 balance is 1937 over the limit.
4: 2 Overdue Account ID2 is overdue 11 days beyond grace period.
5: 2 Overdue Account ID3 is overdue 1 days beyond grace period.
6: 2 Overdue Account ID6 is overdue 5 days beyond grace period.
我不确定这些更改中的哪一个有所不同:
eval
预定义表达式,而不是在函数内的 j
中组合它们msg_id
可以使用 rbindlist
自动编号,因此不必手动输入by=
可以用来代替 lapply
,因为后者有一些奇怪的评估行为我还将 paste
切换为 sprintf
但我确信这无关紧要。
rapply
是必需的,因为 data.table 不支持调用/表达式作为列类型(显然),但支持列表列。
关于r - 了解 R data.table 中非标准评估的范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48835565/
这个问题在这里已经有了答案: What is the best way to parse html in C#? [closed] (15 个答案) 关闭 3 年前。 string input =
为什么 wrapper #4 没有继承其父表容器的高度?表格嵌套在一个显示 block 包装器中,每个嵌套的div是显示表格,每个表格继承到最里面的一个。是什么原因造成的,我该如何解决? jsfidd
我正在使用带有 Bootstrap 的自定义 css 作为外边框。但顶部边框不可见,除非我将其大小设置为 2 px。 我该如何解决这个问题? HTML #name 1.one 2.two 3.thr
我正在逻辑层面上设计一个数据库,以便稍后将其传递给程序员来交付。我只是粗略地了解它们的工作原理,所以我很难简洁地表达我的问题。这是我的问题: 我有一个名为 MEANINGS 的表。 我有一个名为 WO
在 Laravel 上,我们可以使用 DB::table('table')->get(); 或使用 model::('table')->all() 进行访问;我的问题是它们之间有什么区别? 谢谢。 最
我试图从以下内容中抓取 URL从 WorldOMeter 获取 CoVid 数据,在此页面上存在一个表,id 为:main_table_countries_today其中包含我希望收集的 15x225
这是我的图表数据库:/image/CGAwh.png 我用 SEQUELIZE 制作了我的数据库模型: 型号:级别 module.exports = (sequelize, DataTypes) =>
我真的不明白为什么我的代码不能按预期工作。当我将鼠标悬停在表格的每一行上时,我想显示一个图像(来 self 之前加载的 JSON)。每个图像根据行的不同而不同,我想将它们显示在表格之外的另一个元素中。
假设我的数据库中有一张地铁 map ,其中每条线路的每个站点都是一行。如果我想知道我的线路在哪里互连: mysql> SELECT LineA.stop_id FROM LineA, LineB WH
我最近经常使用这些属性,尤其是 display: table-cell。它在现代浏览器中得到了很好的支持,并且它对某些网格有很多好处,并且可以非常轻松地对齐内容,而无需棘手的标记。但在过去的几天里,我
在 CSS 中,我可以这样做: http://s1.ipicture.ru/uploads/20120612/Uk1Z8iZ1.png http://s1.ipicture.ru/uploads/20
问题作为标题,我正在学习sparkSQL,但我无法很好地理解它们之间的区别。谢谢。 最佳答案 spark.table之间没有区别& spark.read.table功能。 内部 spark.read.
我正在尝试根据 this answer 删除表上的非空约束.但是,它似乎没有在 sqlite_sequence 中创建条目。这样做之后,即使我可以在使用测试表时让它正常工作。 有趣的是,如果我备份我的
var otable = new sap.m.Table();//here table is created //here multiple header I'm trying to create t
下面两种方法有什么区别: 内存 性能 答: select table.id from table B: select a.id from table a 谢谢(抱歉,如果我的问题重复)。 最佳答案 完
我尝试在表格后添加点,方法是使用 table::after 选择器创建一个点元素并使用 margin: 5px auto 5px auto; 将其居中。它有效,但似乎在第一个表格列之后添加了点,而不是
我正在设计一个可以标记任何内容的数据库,我可能希望能够选择带有特定标记的所有内容。 我正在为以下两个选项而苦苦挣扎,希望得到一些建议。如果有更好的方法请告诉我。 选项A 多个“多对多”连接表。 tag
"center" div 中的下表元素导致 "left" div 中的内容从顶部偏移几个像素(在我的浏览器中为 8 ).在表格之前添加一些文本可消除此偏移量。 为什么?如何在不要求在我的表格前添加“虚
我是一名优秀的程序员,十分优秀!