blob: f6624ba4384eaf817681721fc5e20d7712239460 [file] [log] [blame]
Marc Kupietz69cc54a2019-09-30 12:06:54 +02001
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
12NULL
13#' @importFrom dplyr mutate
14#' @export
15dplyr::mutate
16#' @importFrom dplyr select
17#' @export
18dplyr::select
19#' @importFrom dplyr group_by
20#' @export
21dplyr::group_by
22#' @importFrom dplyr summarise
23#' @export
24dplyr::summarise
25#' @importFrom tidyr complete
26#' @export
27tidyr::complete
28#' @importFrom lubridate year
29#' @export
30lubridate::year