Marc Kupietz | 69cc54a | 2019-09-30 12:06:54 +0200 | [diff] [blame] | 1 | |
| 2 | #' Pipe operator |
| 3 | #' |
| 4 | #' See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details. |
| 5 | #' |
| 6 | #' @name %>% |
| 7 | #' @rdname pipe |
| 8 | #' @keywords internal |
| 9 | #' @export |
| 10 | #' @importFrom magrittr %>% |
| 11 | #' @usage lhs \%>\% rhs |
| 12 | NULL |
Marc Kupietz | 4de53ec | 2019-10-04 09:12:00 +0200 | [diff] [blame] | 13 | #' @importFrom dplyr bind_cols |
| 14 | #' @export |
| 15 | dplyr::bind_cols |
Marc Kupietz | 69cc54a | 2019-09-30 12:06:54 +0200 | [diff] [blame] | 16 | #' @importFrom dplyr mutate |
| 17 | #' @export |
| 18 | dplyr::mutate |
| 19 | #' @importFrom dplyr select |
| 20 | #' @export |
| 21 | dplyr::select |
| 22 | #' @importFrom dplyr group_by |
| 23 | #' @export |
| 24 | dplyr::group_by |
| 25 | #' @importFrom dplyr summarise |
| 26 | #' @export |
| 27 | dplyr::summarise |
| 28 | #' @importFrom tidyr complete |
| 29 | #' @export |
| 30 | tidyr::complete |
Marc Kupietz | 4de53ec | 2019-10-04 09:12:00 +0200 | [diff] [blame] | 31 | #' @importFrom tidyr expand_grid |
| 32 | #' @export |
| 33 | tidyr::expand_grid |
Marc Kupietz | 69cc54a | 2019-09-30 12:06:54 +0200 | [diff] [blame] | 34 | #' @importFrom lubridate year |
| 35 | #' @export |
| 36 | lubridate::year |
Marc Kupietz | 4de53ec | 2019-10-04 09:12:00 +0200 | [diff] [blame] | 37 | #' @importFrom tibble as_tibble rownames_to_column |
| 38 | #' @export |
| 39 | tibble::as_tibble |
| 40 | tibble::rownames_to_column |
| 41 | #' @importFrom broom tidy |
| 42 | #' @export |
| 43 | broom::tidy |
| 44 | #' @importFrom ggplot2 ggplot geom_bar geom_line |
| 45 | #' @export |