inferstat is an R package for performing descriptive statistics, assumption checking, hypothesis testing, ANOVA, correlation analysis, regression, and publication-ready statistical reporting.
install.packages("inferstat")remotes::install_github("YOUR_GITHUB_USERNAME/inferstat")library(inferstat)
describe(
data = iris,
response = Sepal.Length
)
check_normality(
data = iris,
response = Sepal.Length
)
check_variance(
data = iris,
response = Sepal.Length,
group = Species
)
check_outliers(
data = iris,
response = Sepal.Length
)help(package = "inferstat")MIT