The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

inferstat

inferstat is an R package for performing descriptive statistics, assumption checking, hypothesis testing, ANOVA, correlation analysis, regression, and publication-ready statistical reporting.

Features

Installation

CRAN

install.packages("inferstat")

Development version

remotes::install_github("YOUR_GITHUB_USERNAME/inferstat")

Example

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
)

Documentation

help(package = "inferstat")

License

MIT

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.