SKconvienience is a package with convenience functions for all things R stats.
Installation
You can install the development version of SKconvienience from GitHub with:
# Install devtools if you don't have it
install.packages("devtools")
# Install SKconvienience
devtools::install_github("follhim/SKconvienience")Example
Basic correlation table
library(SKconvienience)
# Create an APA-style correlation table
apa_cor_table(mtcars[, 1:5])With shifted descriptives
Display descriptive statistics as rows at the bottom instead of columns:
apa_cor_table(mtcars[, 1:5], shift.descriptives = TRUE)Export to Excel
apa_cor_table(mtcars[, 1:5], filename = "my_correlation_table.xlsx")Citation
To cite this package in publications:
citation("SKconvienience")Or use:
Kim, S. (2025). SKconvienience: A package for convenience in statistics (Version 0.0.0.9). https://follhim.github.io/SKconvienience/