使用逻辑字符串子集化data.frame

时间:2012-08-18 00:19:16

标签: r character dataframe subset

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

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

1 个答案:

答案 0 :(得分: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