Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Apr 18, 2024
1 parent 30176ab commit 9d14592
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions R/mixed_anova_2_way.R
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,11 @@
#' mixed_anova_2_way(
#' data = iris, iv_name_bw_group = "Species",
#' repeated_measures_col_names = c("Sepal.Length", "Petal.Length"))
#' mixed_anova_2_way(
#' g1 <- mixed_anova_2_way(
#' data = iris, iv_name_bw_group = "Species",
#' repeated_measures_col_names = c("Sepal.Length", "Petal.Length"),
#' error_bar = "se")
#' error_bar = "se",
#' output = "plot")
#' }
#' @export
#' @import data.table
Expand Down Expand Up @@ -216,9 +217,8 @@ mixed_anova_2_way <- function(
print(g1)
if (output == "plot") {
invisible(g1)
}
# return all
if (output == "all") {
} else if (output == "all") {
# return all
output <- list(
"desc_stats_table" = dt3,
"plot" = g1)
Expand Down
5 changes: 3 additions & 2 deletions man/mixed_anova_2_way.Rd

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

0 comments on commit 9d14592

Please sign in to comment.