Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 2 additions & 2 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.claude
.dev
.ls-lint.yml
^.*\.Rproj$
^.dev$
^.gitlab-ci\.yml$
^API$
^CITATION\.cff$
^CODE_OF_CONDUCT\.md$
Expand Down
126 changes: 0 additions & 126 deletions .github/CODE_OF_CONDUCT.md

This file was deleted.

54 changes: 0 additions & 54 deletions .github/CONTRIBUTING.md

This file was deleted.

40 changes: 0 additions & 40 deletions .github/SUPPORT.md

This file was deleted.

4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,19 @@ Network Trash Folder
Temporary Items

# R Studio files
*.Rcheck/*
*.tar.gz
.RData
.Rhistory
.Rproj.user
.Ruserdata
.claude
.claude/settings.local.json
.httr-oauth
/Meta/
/doc/
CRAN-SUBMISSION
README.html
inst/doc
revdep/checks
revdep/checks.noindex
Expand Down
35 changes: 14 additions & 21 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,12 @@ Type: Package
Package: ggstatsplot
Title: 'ggplot2' Based Plots with Statistical Details
Version: 0.13.3.9000
Authors@R:
c(person(given = "Indrajeet",
family = "Patil",
role = c("cre", "aut", "cph"),
email = "[email protected]",
comment = c(ORCID = "0000-0003-1995-6531")),
person(given = "Chuck",
family = "Powell",
email = "[email protected]",
role = "ctb",
comment = c(ORCID = "0000-0002-3606-2188")))
Authors@R: c(
person("Indrajeet", "Patil", , "[email protected]", role = c("cre", "aut", "cph"),
comment = c(ORCID = "0000-0003-1995-6531")),
person("Chuck", "Powell", , "[email protected]", role = "ctb",
comment = c(ORCID = "0000-0002-3606-2188"))
)
Maintainer: Indrajeet Patil <[email protected]>
Description: Extension of 'ggplot2', 'ggstatsplot' creates graphics with
details from statistical tests included in the plots themselves. It
Expand Down Expand Up @@ -45,16 +40,16 @@ Imports:
paletteer (>= 1.6.0),
parameters (>= 0.28.3),
patchwork (>= 1.3.2),
performance (>= 0.15.2),
performance (>= 0.15.3),
purrr (>= 1.2.0),
rlang (>= 1.1.6),
statsExpressions (>= 1.7.1),
tidyr (>= 1.3.1),
utils
Suggests:
afex,
bayestestR,
BayesFactor (>= 0.9.12-4.7),
bayestestR,
gapminder,
knitr,
lme4 (>= 1.1-37),
Expand All @@ -74,15 +69,13 @@ Suggests:
WRS2
VignetteBuilder:
knitr
Config/Needs/check: anthonynorth/roxyglobals
Config/roxyglobals/unique: TRUE
Config/testthat/edition: 3
Config/testthat/parallel: true
Encoding: UTF-8
Language: en-US
LazyData: true
Roxygen: list(
markdown = TRUE,
roclets = c("collate", "namespace", "rd", "pkgapi::api_roclet", "roxyglobals::global_roclet")
)
Roxygen: list( markdown = TRUE, roclets = c("collate", "namespace", "rd",
"pkgapi::api_roclet", "roxyglobals::global_roclet") )
RoxygenNote: 7.3.3
Config/testthat/edition: 3
Config/testthat/parallel: true
Config/Needs/check: anthonynorth/roxyglobals
Config/roxyglobals/unique: TRUE
19 changes: 14 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,17 @@ clean:
@rm -rf $(PKGNAME)_$(PKGVERS).tar.gz $(PKGNAME).Rcheck

update_deps:
Rscript \
-e 'options(repos = c(CRAN = "https://cran.r-project.org"))' \
-e 'usethis::use_latest_dependencies(source = "CRAN")' \
-e 'roxygen2::roxygenise()' \
-e 'codemetar::write_codemeta()'
Rscript -e 'options(repos = c(CRAN = "https://packagemanager.posit.co/cran/latest")); usethis::use_tidy_description()'
Rscript -e 'options(repos = c(CRAN = "https://packagemanager.posit.co/cran/latest")); usethis::use_latest_dependencies(source = "CRAN", overwrite = TRUE)'
Rscript -e 'roxygen2::roxygenise()'
Rscript -e 'codemetar::write_codemeta()'

document:
Rscript -e 'roxygen2::roxygenise()'
Rscript -e 'rmarkdown::render("README.Rmd")'

format:
Rscript -e 'styler::style_pkg()'

lint:
Rscript -e 'lintr::lint_package()'
4 changes: 2 additions & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -791,5 +791,5 @@ of commitment):
- Add new functionality (in the form of new plotting functions or helpers for
preparing subtitles)

Please note that this project is released with a
[Contributor Code of Conduct](https://indrajeetpatil.github.io/ggstatsplot/CODE_OF_CONDUCT.html). By participating in this project you agree to abide by its terms.
Please note that this project is released with a
[Contributor Code of Conduct](https://www.contributor-covenant.org/version/3/0/code_of_conduct/). By participating in this project you agree to abide by its terms.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -847,5 +847,5 @@ order of commitment):
helpers for preparing subtitles)

Please note that this project is released with a [Contributor Code of
Conduct](https://indrajeetpatil.github.io/ggstatsplot/CODE_OF_CONDUCT.html).
Conduct](https://www.contributor-covenant.org/version/3/0/code_of_conduct/).
By participating in this project you agree to abide by its terms.
Loading
Loading