如何通过因素从数据框中提取行?

时间:2019-02-17 12:25:50

标签: r dataframe

我有一个数据框,现在我想按列内容提取一些行。例如:

$hasAccess = $this->isGranted('ROLE_ADMIN');
$this->denyAccessUnlessGranted('ROLE_ADMIN');

我要提取dftry $ name ==“ John” |的行。 “ cat”(在列表中)我该怎么做?我尝试过

name <- c("John","Lily","Cat","King")
record <- c(2,6,10,3)
dftry <- data.frame(name,record)
list <- c("John","cat")

那么我怎么容易做到呢?谢谢

0 个答案:

没有答案