Skip to content
Prev 385342 / 398513 Next

combine filter() and select()

The whole point of dplyr primitives is to support data frames... that is, lists of columns. When you pare your data frame down to one column you are almost certainly using the wrong tool for the job.

So, sure, your code works... and it even does what you wanted in the dplyr style, but what a pointless exercise.

grep( "a", mytbl$file, value=TRUE )
On August 19, 2020 7:56:32 AM PDT, Ivan Calandra <calandra at rgzm.de> wrote: