0

我想使用字符串执行逻辑运算(是的,我想这样做)

a = data.frame(x=c(1,2,3,4),y=c(11,12,13,14))
logical_text = "a$x!=2 & a$y!=14"

a
> a
  x  y
1 1 11
2 2 12
3 3 13
4 4 14

我希望按如下方式使用字符串

  a[logical_text,]
> a[logical_text,]
    x  y
NA NA NA

为了获得与以下相同的结果:

a[a$x!=2 & a$y!=14,]
> a[a$x!=2 & a$y!=14,]
  x  y
1 1 11
3 3 13
4

1 回答 1

6

以这种方式做事不一定是个好主意。但是如果你真的必须的话,你可以用eval(parse(text = your_command_as_a_string_here))它来评估一个字符串,就好像它是代码一样

a = data.frame(x=c(1,2,3,4),y=c(11,12,13,14))
logical_text = "a$x!=2 & a$y!=14"

# Evaluate logical_text into a temporary logical variable
logical_output <- eval(parse(text = logical_text))
a[logical_output,]
#  x  y
#1 1 11
#3 3 13

# Same thing but without storing as a temporary variable.
a[eval(parse(text=logical_text)), ]
#  x  y
#1 1 11
#3 3 13
于 2012-08-18T00:23:18.750 回答