forked from ddsjoberg/gtsummary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reexport.R
66 lines (51 loc) · 1.13 KB
/
reexport.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# tibble -----------------------------------------------------------------------
#' @export
#' @importFrom tibble as_tibble
tibble::as_tibble
# knitr ------------------------------------------------------------------------
#' @export
#' @importFrom knitr knit_print
knitr::knit_print
# dplyr ------------------------------------------------------------------------
#' @export
#' @importFrom dplyr %>%
dplyr::`%>%`
#' @importFrom dplyr vars
#' @export
dplyr::vars
#' @importFrom dplyr select
#' @export
dplyr::select
#' @importFrom dplyr mutate
#' @export
dplyr::mutate
#' @importFrom dplyr starts_with
#' @export
dplyr::starts_with
#' @importFrom dplyr ends_with
#' @export
dplyr::ends_with
#' @importFrom dplyr contains
#' @export
dplyr::contains
#' @importFrom dplyr matches
#' @export
dplyr::matches
#' @importFrom dplyr num_range
#' @export
dplyr::num_range
#' @importFrom dplyr all_of
#' @export
dplyr::all_of
#' @importFrom dplyr any_of
#' @export
dplyr::any_of
#' @importFrom dplyr everything
#' @export
dplyr::everything
#' @importFrom dplyr last_col
#' @export
dplyr::last_col
#' @importFrom dplyr one_of
#' @export
dplyr::one_of