Use this tag for questions relating to functions from the dplyr package, such as group_by, summarize, filter, and select.
I have to filter a data frame using as criterion those row in which is contained the string RTB. I'm …
r filter dplyrI'm running an example in R, going through the steps and everything is working so far except for this code …
r dplyr magrittrI have a data.frame with character data in one of the columns. I would like to filter multiple options …
r dplyr string-matching multiple-conditionsCan the mutate be used when the mutation is conditional (depending on the values of certain column values)? This example …
r if-statement dplyr case-when mutateI'm struggling a bit with the dplyr-syntax. I have a data frame with different variables and one grouping variable. Now …
r dplyr aggregateIn a large dataframe ("myfile") with four columns I have to add a fifth column with values conditionally based on …
r dplyr mutateI tried to remove NA's from the subset using dplyr piping. Is my answer an indication of a missed step. …
r dplyr na