Initial import
Change-Id: Ibe34c4c9c5313d91ffbd1a4e6a7da85adc1d8c39
diff --git a/R/reexports.R b/R/reexports.R
new file mode 100644
index 0000000..4932bb4
--- /dev/null
+++ b/R/reexports.R
@@ -0,0 +1,45 @@
+
+#' Pipe operator
+#'
+#' See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details.
+#'
+#' @name %>%
+#' @rdname pipe
+#' @keywords internal
+#' @export
+#' @importFrom magrittr %>%
+#' @usage lhs \%>\% rhs
+NULL
+#' @importFrom dplyr bind_cols
+#' @export
+dplyr::bind_cols
+#' @importFrom dplyr mutate
+#' @export
+dplyr::mutate
+#' @importFrom dplyr select
+#' @export
+dplyr::select
+#' @importFrom dplyr group_by
+#' @export
+dplyr::group_by
+#' @importFrom dplyr summarise
+#' @export
+dplyr::summarise
+#' @importFrom dplyr n
+#' @export
+dplyr::n
+#' @importFrom tidyr complete
+#' @export
+tidyr::complete
+#' @importFrom tidyr expand_grid
+#' @export
+tidyr::expand_grid
+#' @importFrom lubridate year
+#' @export
+lubridate::year
+#' @importFrom tibble as_tibble rownames_to_column
+#' @export
+tibble::as_tibble
+tibble::rownames_to_column
+#' @importFrom ggplot2 ggplot geom_bar geom_line
+#' @export