blob: 1f7e8044af910d51e0cb0de8eb58c6e8feef9ebe [file] [log] [blame]
Marc Kupietz69cc54a2019-09-30 12:06:54 +02001
2#' Pipe operator
3#'
Marc Kupietz67edcb52021-09-20 21:54:24 +02004#' See `magrittr::[\%>\%][magrittr::pipe]` for details.
Marc Kupietz69cc54a2019-09-30 12:06:54 +02005#'
6#' @name %>%
7#' @rdname pipe
8#' @keywords internal
9#' @export
10#' @importFrom magrittr %>%
11#' @usage lhs \%>\% rhs
12NULL
Marc Kupietz4de53ec2019-10-04 09:12:00 +020013#' @importFrom dplyr bind_cols
14#' @export
15dplyr::bind_cols
Marc Kupietz69cc54a2019-09-30 12:06:54 +020016#' @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
Marc Kupietzcb3c59e2020-06-02 10:10:43 +020028#' @importFrom dplyr n
29#' @export
30dplyr::n
Marc Kupietz69cc54a2019-09-30 12:06:54 +020031#' @importFrom tidyr complete
32#' @export
33tidyr::complete
Marc Kupietz4de53ec2019-10-04 09:12:00 +020034#' @importFrom tidyr expand_grid
35#' @export
36tidyr::expand_grid
Marc Kupietz69cc54a2019-09-30 12:06:54 +020037#' @importFrom lubridate year
38#' @export
39lubridate::year
Marc Kupietz4de53ec2019-10-04 09:12:00 +020040#' @importFrom tibble as_tibble rownames_to_column
41#' @export
42tibble::as_tibble
43tibble::rownames_to_column
44#' @importFrom broom tidy
45#' @export
46broom::tidy
47#' @importFrom ggplot2 ggplot geom_bar geom_line
48#' @export