【发布时间】:2011-03-27 14:41:57
【问题描述】:
给定一个数据框“foo”,我怎样才能从“foo”中只选择那些行,例如foo$location = "there"?
foo = data.frame(location = c("here", "there", "here", "there", "where"), x = 1:5, y = 6:10)
foo
# location x y
# 1 here 1 6
# 2 there 2 7
# 3 here 3 8
# 4 there 4 9
# 5 where 5 10
期望的结果,“条”:
# location x y
# 2 there 2 7
# 4 there 4 9
【问题讨论】: