Concept Flow - filter() for row selection
Start with data frame
Apply filter() with condition
Check each row against condition
Keep rows where condition is TRUE
Return filtered data frame
End
The filter() function checks each row of a data frame against a condition and keeps only the rows where the condition is true.