本文介绍了子集数据表由逻辑列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个带有逻辑列的 data.table
。为什么逻辑列的名称不能直接用于 i
参数?参见示例。
I have a data.table
with a logical column. Why the name of the logical column can not be used directly for the i
argument? See the example.
dt <- data.table(x = c(T, T, F, T), y = 1:4)
# Works
dt[dt$x]
dt[!dt$x]
# Works
dt[x == T]
dt[x == F]
# Does not work
dt[x]
dt[!x]
推荐答案
从?data.table
因此 dt [x]
会尝试在调用范围(在这种情况下是全局环境)中 x
进行求值
So dt[x]
will try to evaluate x
in the calling scope (in this case the global environment)
(
或 {
或 force
dt[(x)]
dt[{x}]
dt[force(x)]
这篇关于子集数据表由逻辑列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!