blob: 4932bb4f76a9d33fe91b7dcd74c56f2272486332 [file] [log] [blame]
Marc Kupietzb74649f2020-12-11 12:44:49 +01001
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 bind_cols
14#' @export
15dplyr::bind_cols
16#' @importFrom dplyr mutate
17#' @export
18dplyr::mutate
19#' @importFrom dplyr select
20#' @export
21dplyr::select
22#' @importFrom dplyr group_by
23#' @export
24dplyr::group_by
25#' @importFrom dplyr summarise
26#' @export
27dplyr::summarise
28#' @importFrom dplyr n
29#' @export
30dplyr::n
31#' @importFrom tidyr complete
32#' @export
33tidyr::complete
34#' @importFrom tidyr expand_grid
35#' @export
36tidyr::expand_grid
37#' @importFrom lubridate year
38#' @export
39lubridate::year
40#' @importFrom tibble as_tibble rownames_to_column
41#' @export
42tibble::as_tibble
43tibble::rownames_to_column
44#' @importFrom ggplot2 ggplot geom_bar geom_line
45#' @export