statdecideR
is an R package for
automatic statistical decision-making, compact letter
displays (CLDs), and beautiful plots for parametric and
non-parametric tests — making your analysis both robust and
publication-ready.
# Development version (from local source or GitHub in future)
# install.packages("devtools")
::install_github("yourusername/statdecideR") devtools
⚠ Replace
"yourusername"
with your actual GitHub username once hosted.
library(statdecideR)
# Load your data
<- read.csv("your_data.csv")
data
# Run analysis and plot
plot_with_cld(
data = data,
dep_var = "pollen", # Your dependent variable
group_var = "month", # Your independent variable (factor)
normal = FALSE # Will be auto-detected in future version
)
The package automatically performs: - Statistical test selection - Post-hoc analysis (if significant) - Plot with CLD labels
MIT © Subhradip Bhattacharjee