Skip to content

Commit

Permalink
Merge branch 'main' into htest_data
Browse files Browse the repository at this point in the history
  • Loading branch information
rempsyc authored Apr 1, 2024
2 parents 12a736f + 6114f44 commit 5b3058b
Show file tree
Hide file tree
Showing 80 changed files with 4,215 additions and 1,230 deletions.
4 changes: 2 additions & 2 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ publication/*
^\.httr-oauth$
^CRAN-RELEASE$
tests\^spelling
^LICENSE
^\.lintr$
^\.circleci$
^tests/manual$
Expand All @@ -52,4 +51,5 @@ hextools
\.code-workspace$
# Flip these two to no build vignettes:
# ^vignettes/(?!additional).*
^vignettes/additional
^vignettes/additional
^LICENSE\.md$
25 changes: 25 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Basic .gitattributes for a R repo.

# Source files
# =============================
*.Rdata binary
*.RData binary
*.rda binary
*.rdb binary
*.rds binary
*.Rd text
*.Rdx binary
*.Rmd text
*.R text eol=crlf
*.Rproj text
*.[Rr]md linguist-detectable
*.PS linguist-detectable

# Documentation files
# =============================
docs/* linguist-documentation
man/* linguist-documentation
misc/* linguist-documentation
papers/* linguist-documentation
pkgdown/* linguist-documentation
*.html linguist-documentation
4 changes: 2 additions & 2 deletions .github/workflows/html-5-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
pull_request:
branches: [main, master]

name: HTML5 check
name: html-5-check

jobs:
HTML5-check:
html-5-check:
uses: easystats/workflows/.github/workflows/html-5-check.yaml@main
2 changes: 1 addition & 1 deletion .github/workflows/pkgdown-no-suggests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Always try to use the latest pandoc version
# https://github.com/jgm/pandoc/releases
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/update-to-latest-easystats.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
on:
schedule:
# Check for dependency updates once a month
- cron: "0 0 1 * *"

name: update-to-latest-easystats

jobs:
update-to-latest-easystats:
uses: easystats/workflows/.github/workflows/update-to-latest-easystats.yaml@main
28 changes: 16 additions & 12 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: effectsize
Title: Indices of Effect Size
Version: 0.8.5
Version: 0.8.7
Authors@R:
c(person(given = "Mattan S.",
family = "Ben-Shachar",
Expand Down Expand Up @@ -53,29 +53,34 @@ Authors@R:
family = "Karreth",
role = "rev",
email = "jkarreth@ursinus.edu",
comment = c(ORCID = "0000-0003-4586-7153")))
comment = c(ORCID = "0000-0003-4586-7153")),
person(given = "Philip",
family = "Waggoner",
role = c("aut", "ctb"),
email = "philip.waggoner@gmail.com",
comment = c(ORCID = "0000-0002-7825-7573")))
Maintainer: Mattan S. Ben-Shachar <mattansb@msbstats.info>
Description: Provide utilities to work with indices of effect size for a wide
variety of models and hypothesis tests (see list of supported models using
the function 'insight::supported_models()'), allowing computation of and
conversion between indices such as Cohen's d, r, odds, etc.
References: Ben-Shachar et al. (2020) <doi:10.21105/joss.02815>.
License: GPL-3
License: MIT + file LICENSE
URL: https://easystats.github.io/effectsize/
BugReports: https://github.com/easystats/effectsize/issues/
Depends:
R (>= 3.6)
Imports:
bayestestR (>= 0.13.0),
insight (>= 0.19.3.2),
parameters (>= 0.20.2),
performance (>= 0.10.2),
datawizard (>= 0.6.5),
bayestestR (>= 0.13.2),
insight (>= 0.19.9),
parameters (>= 0.21.6),
performance (>= 0.11.0),
datawizard (>= 0.9.1),
stats,
utils
Suggests:
correlation (>= 0.8.3),
see (>= 0.7.4),
correlation (>= 0.8.4),
see (>= 0.8.0),
afex,
BayesFactor,
boot,
Expand All @@ -100,11 +105,10 @@ VignetteBuilder:
Encoding: UTF-8
Language: en-US
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3.9000
RoxygenNote: 7.3.1
Config/testthat/edition: 3
Config/testthat/parallel: true
Config/Needs/website:
rstudio/bslib,
r-lib/pkgdown,
easystats/easystatstemplate
Remotes: easystats/insight
Loading

0 comments on commit 5b3058b

Please sign in to comment.