Skip to content

Commit

Permalink
Version 2.4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathon-love committed Oct 11, 2023
1 parent 7de85ea commit f081878
Show file tree
Hide file tree
Showing 10 changed files with 176 additions and 166 deletions.
10 changes: 7 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
Package: jmv
Type: Package
Title: The 'jamovi' Analyses
Version: 2.3.4
Date: 2022-03-29
Author: Ravi Selker, Jonathon Love, Damian Dropmann, Victor Moreno, Maurizio Agosti
Version: 2.4.9
Date: 2023-10-04
Authors@R: c(person("Ravi", "Selker", role=c("aut", "cph")),
person("Jonathon", "Love", role=c("aut", "cre", "cph"), email="[email protected]"),
person("Damian", "Dropmann", role=c("aut", "cph")),
person("Victor", "Moreno", role=c("ctb", "cph")),
person("Maurizio", "Agosti", role=c("ctb", "cph")))
Maintainer: Jonathon Love <[email protected]>
Description: A suite of common statistical methods such as descriptives,
t-tests, ANOVAs, regression, correlation matrices, proportion tests,
Expand Down
6 changes: 6 additions & 0 deletions R/ancova.b.R
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ ancovaClass <- R6::R6Class(

suppressWarnings({

old <- base::options()
on.exit(options(old))

base::options(contrasts = c("contr.sum","contr.poly"))

for (contrast in self$options$contrasts) {
Expand Down Expand Up @@ -1110,6 +1113,9 @@ ancovaClass <- R6::R6Class(

suppressWarnings({

old <- base::options()
on.exit(options(old))

base::options(contrasts = c("contr.sum","contr.poly"))

for (contrast in self$options$contrasts) {
Expand Down
2 changes: 1 addition & 1 deletion R/anovarm.h.R
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ anovaRMBase <- if (requireNamespace("jmvcore", quietly=TRUE)) R6::R6Class(
#'
#'
#' @examples
#' \dontrun{
#' \donttest{
#'
#' data('bugs', package = 'jmv')
#'
Expand Down
Loading

0 comments on commit f081878

Please sign in to comment.