Data management with dplyr, tidyr, and reshape2

With the dplyr package, the filter() function allows you to select a subset of the rows of a data frame. > dplyr::filter(FlightDelays, Month == 1 & DayofMonth == 1) With the filter() function you can give any number of filtering conditions which are joined together with “&” or other Boolean operators. ................
................