The question is how to use a column on a tibble to select the whole row. The code below shows what I normally do using basic R functions to index rows I want to eliminate form the data frame dataMet. I was wondering if I can use tidyverse functions on a tibble to get the same results. Thanks!
outL <- c("S11", "S156", "S302")
index <- match(outL, rownames(dataMet))
# Print Outliers
outL
dataMet[index,]
# Remove Outliers
dataMet <- dataMet[-index,]
EDIT: to clarify, I want to conduct this operation without using rownames. Instead, I want to subset the data according to matches between a vector and a column.