我有一个数据框,现在我想按列内容提取一些行。例如:
$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")
那么我怎么容易做到呢?谢谢