Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: see
Title: Model Visualisation Toolbox for 'easystats' and 'ggplot2'
Version: 0.14.1.4
Version: 0.14.2
Authors@R:
c(person(given = "Daniel",
family = "Lüdecke",
Expand Down Expand Up @@ -130,5 +130,4 @@ Config/testthat/edition: 3
Config/testthat/parallel: false
Config/Needs/website: easystats/easystatstemplate
Config/rcmdcheck/ignore-inconsequential-notes: true
Config/roxygen2/version: 8.0.0
Remotes: easystats/datawizard
Config/roxygen2/version: 8.1.0
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# see (devel)
# see 0.14.2

## Changes

Expand Down
4 changes: 2 additions & 2 deletions R/plot.means_by_group.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#' @details
#' Produces a faceted plot when there is more than one means-table.
#'
#' @examples
#' @examplesIf insight::check_if_installed("datawizard", minimum_version = "1.3.2", quietly = TRUE)
#' \dontrun{
#' group_means_object <- datawizard::means_by_group(iris$Sepal.Width, iris$Species)
#' plot(group_means_object, title = "group means", ci = FALSE, caption = FALSE)
Expand Down Expand Up @@ -42,7 +42,7 @@
trimmed$Category,
levels = unique(trimmed$Category)
)

p <- ggplot2::ggplot(
trimmed,
ggplot2::aes(x = .data$Category, y = .data$Mean)
Expand Down Expand Up @@ -90,7 +90,7 @@

x_attributes <- lapply(x, attributes)
x_var_names <- lapply(x_attributes, `[[`, "var_mean_label")
x_captions <- mapply(.build_caption, x, x_var_names)

Check warning on line 93 in R/plot.means_by_group.R

View workflow job for this annotation

GitHub Actions / lint-changed-files / lint-changed-files

file=R/plot.means_by_group.R,line=93,col=17,[undesirable_function_linter] Avoid undesirable function "mapply".
x_caption <- paste(x_captions, collapse = "")

x <- lapply(seq_along(x_var_names), function(i) {
Expand Down
2 changes: 2 additions & 0 deletions man/plot.see_dw_groupmeans.Rd

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

1 change: 1 addition & 0 deletions man/see-package.Rd

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

Loading