Skip to content

Commit

Permalink
ANOPA v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dcousin3 committed Mar 17, 2024
0 parents commit 80eab49
Show file tree
Hide file tree
Showing 173 changed files with 23,289 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
^.git$
^doc$
^docs$
^Meta$
^cran-comments.md
^CRAN-RELEASE$
^pkgdown$
^_pkgdown\.yml$
^README\.Rmd$
^README_files$
^logo.png$
^revdep$
^CRAN-SUBMISSION$
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
doc
Meta
/doc/
/Meta/
CRAN-SUBMISSON
cran-comments.md
CRAN-RELEASE
51 changes: 51 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
Package: ANOPA
Type: Package
Title: Analyses of Proportions using Anscombe Transform
Version: 0.1.1
Date: 2024-03-20
Authors@R: c(
person("Denis", "Cousineau", email = "[email protected]",
role = c("aut", "ctb", "cre")),
person("Louis", "Laurencelle", email = "[email protected]",
role = c("aut", "ctb"))
)
Author: Denis Cousineau [aut, cre],
Louis Laurencelle [aut, ctb]
Maintainer: Denis Cousineau <[email protected]>
BugReports: https://github.com/dcousin3/ANOPA/issues/
URL: https://dcousin3.github.io/ANOPA/
Description:
Analyses of Proportions can be performed on the Anscombe (arcsine-related) transformed
data. The ANOPA package can analyze proportions obtained from up to
four factors. The factors can be within-subject or between-subject or a mix
of within- and between-subject. The main, omnibus analysis can be followed by
additive decompositions into interaction effects, main effects, simple
effects, contrast effects, etc., mimicking precisely the logic of ANOVA. For
that reason, we call this set of tools 'ANOPA' (Analysis of Proportion
using Anscombe transform) to highlight its similarities with ANOVA.
The ANOPA framework also allows plots of proportions easy to obtain
along with confidence intervals. Finally, effect sizes and planning statistical
power are easily done under this framework. Only particularity, the ANOPA computes
F statistics which have an infinite degree of freedom on the denominator.
See Laurencelle and Cousineau (2023) <doi:10.3389/fpsyg.2022.1045436>.
License: GPL-3
Encoding: UTF-8
VignetteBuilder: knitr
LazyData: true
RoxygenNote: 7.3.1
Depends:
R (>= 3.5.0)
Imports:
superb (>= 0.95.0),
Rdpack (>= 0.7),
ggplot2 (>= 3.1.0),
scales (>= 1.2.1),
stats,
rrapply,
utils,
plyr (>= 1.8.4)
Suggests:
rmarkdown,
testthat,
knitr
RdMacros: Rdpack
51 changes: 51 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Generated by roxygen2: do not edit by hand

S3method(corrected,ANOPAobject)
S3method(corrected,default)
S3method(explain,ANOPAobject)
S3method(explain,default)
S3method(print,ANOPAobject)
S3method(print,ANOPAtable)
S3method(summarize,ANOPAobject)
S3method(summarize,default)
S3method(summary,ANOPAobject)
S3method(uncorrected,ANOPAobject)
S3method(uncorrected,default)
export(A)
export(Atrans)
export(CI.Atrans)
export(CI.prop)
export(GRP)
export(SE.Atrans)
export(anopa)
export(anopaN2Power)
export(anopaPlot)
export(anopaPower2N)
export(anopaProp2fsq)
export(contrastProportions)
export(corrected)
export(emProportions)
export(explain)
export(posthocProportions)
export(prop)
export(rBernoulli)
export(summarize)
export(toCompiled)
export(toLong)
export(toWide)
export(uncorrected)
export(unitaryAlpha)
export(var.Atrans)
export(varA)
importFrom(Rdpack,reprompt)
importFrom(stats,aggregate)
importFrom(stats,as.formula)
importFrom(stats,optimize)
importFrom(stats,pchisq)
importFrom(stats,qchisq)
importFrom(stats,reshape)
importFrom(stats,runif)
importFrom(stats,var)
importFrom(superb,GRD)
importFrom(utils,capture.output)
importFrom(utils,combn)
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# ANOPA 0.1.1 (March 2023)

* Beta release of ANOPA on CRAN

# ANOPA 0.1.0 (January 2023)

* Beta release of ANOPA on GitHub

Loading

0 comments on commit 80eab49

Please sign in to comment.