This is tadaatoolbox version 0.16.9000
(semver(ish)).
It contains helpers for data
analysis and presentation focused on undergrad psychology, the target
audience being students at University of Bremen.
Please consider this as a teaching project and be careful if you intend
to use it for production use.
To see what’s new, see
NEWS.md.
Also, since this project is still in the 0.x.y
version, you should
expect the API to change at any time. Once we reach 1.0.0
, API changes
will be rolled out more slowly and include depracation warnings. In the
meantime, the package is available on CRAN primarily for convenience,
because its target audience is likely not familiar with GitHub or
devtools
.
Install the current development version from GitHub (recommended):
if (!("remotes" %in% installed.packages())){
install.packages("remotes")
}
remotes::install_github("tadaadata/tadaatoolbox")
Or install the most recent stable version from CRAN:
install.packages("tadaatoolbox")
Please do! I have no idea where I’m going with this. Feel free to open issues.
Contributer | Role |
---|---|
Lukas Burk | Author & Maintainer |
Tobias Anton | Author |
Daniel Lüdecke | Contributor |
See the included vignette for a demonstration:
browseVignettes("tadaatoolbox")
or view the pkgdown
ed version of
this repo for an overview and
function index.
Here’s a few highlights:
See all of them in action in this vignette
tadaa_aov
: For 3 flavours ofaov
with included partial (\eta^2), Cohen’s f and power.tadaa_kruskal
: A wrapper forkruskal.test
tidied and optionallypixiedust
ed.tadaa_t.test
: Fort.test
with automatic homogenity of variance detection, effect size and power.tadaa_wilcoxon
: A wrapper forwilcox.test
tidied and optionallypixiedust
ed.tadaa_levene
: Wrapper forcar::leveneTest
tidied and optionallypixiedust
ed.tadaa_normtest
lets you do tests for normality (4 methods) over multiple variables.tadaa_pairwise_t
,tadaa_pairwise_gh
andtadaa_pairwise_tukey
for various pairwise procedures.
tadaa_int
: Simple interaction plot template.tadaa_balance
: Check equality of group sizes.tadaa_mean_ci
: Plots means with 95% confidence intervals as errorbars.tadaa_plot_tukey
: For prettyTukeyHSD
visualization.
I rely on these awesome package for all the things this package does, so you might want to consider checking them out.
- broom
- car
- DescTools
- ggplot2
- magrittr
- methods
- nortest
- pixiedust
- pwr
- stats
- viridis
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.