Skip to content

Commit

Permalink
doc updated
Browse files Browse the repository at this point in the history
  • Loading branch information
kassambara committed Jun 18, 2020
1 parent 37a73a8 commit 9edc592
Show file tree
Hide file tree
Showing 15 changed files with 377 additions and 31 deletions.
7 changes: 5 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,15 @@ Imports:
utils,
tidyr (>= 1.0.0),
purrr,
broom,
broom (>= 0.5.6),
rlang (>= 0.3.1),
tibble (>= 2.1.3),
dplyr (>= 0.7.1),
magrittr,
corrplot,
tidyselect (>= 1.0.0),
car
car,
generics (>= 0.0.2)
Suggests:
knitr,
rmarkdown,
Expand Down Expand Up @@ -104,6 +105,8 @@ Collate:
'shapiro_test.R'
'sign_test.R'
'tukey_hsd.R'
'utils-manova.R'
'utils-pipe.R'
'welch_anova_test.R'
'wilcox_effsize.R'
'wilcox_test.R'
Expand Down
3 changes: 2 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ export(tukey_hsd)
export(welch_anova_test)
export(wilcox_effsize)
export(wilcox_test)
importFrom(broom,augment)
importFrom(broom,tidy)
importFrom(car,Anova)
importFrom(car,Manova)
Expand All @@ -151,6 +150,8 @@ importFrom(dplyr,select)
importFrom(dplyr,summarise)
importFrom(dplyr,tibble)
importFrom(dplyr,ungroup)
importFrom(generics,augment)
importFrom(generics,tidy)
importFrom(magrittr,"%<>%")
importFrom(magrittr,"%>%")
importFrom(magrittr,extract)
Expand Down
14 changes: 4 additions & 10 deletions R/reexports.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#' @importFrom magrittr %>%
#' @export
magrittr::`%>%`
#' @importFrom tibble tibble
#' @export
tibble::tibble
Expand Down Expand Up @@ -28,15 +25,12 @@ tidyr::gather
#' @importFrom tidyr spread
#' @export
tidyr::spread
#' @importFrom broom tidy
#' @importFrom generics tidy
#' @export
broom::tidy
#' @importFrom broom augment
generics::tidy
#' @importFrom generics augment
#' @export
broom::augment
generics::augment
#' @importFrom car Anova
#' @export
car::Anova
#' @importFrom car Manova
#' @export
car::Manova
10 changes: 10 additions & 0 deletions R/utils-manova.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#' Manova exported from car package
#'
#' See \code{car::\link[car:Anova]{Manova}} for details.
#'
#' @name Manova
#' @rdname Manova
#' @keywords internal
#' @export
#' @importFrom car Manova
NULL
11 changes: 11 additions & 0 deletions R/utils-pipe.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#' Pipe operator
#'
#' See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details.
#'
#' @name %>%
#' @rdname pipe
#' @keywords internal
#' @export
#' @importFrom magrittr %>%
#' @usage lhs \%>\% rhs
NULL
1 change: 1 addition & 0 deletions docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ pandoc: 2.3.1
pkgdown: 1.5.1
pkgdown_sha: ~
articles: []
last_built: 2020-06-17T22:33Z
last_built: 2020-06-18T19:49Z

155 changes: 155 additions & 0 deletions docs/reference/Manova.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/reference/factorial_design.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9edc592

Please sign in to comment.