https://github.com/sciviews/inferit
Inference Tools for SciViews::R
https://github.com/sciviews/inferit
r r-package sciviews statistical-inference statistical-tests
Last synced: 12 months ago
JSON representation
Inference Tools for SciViews::R
- Host: GitHub
- URL: https://github.com/sciviews/inferit
- Owner: SciViews
- License: other
- Created: 2020-02-28T14:31:17.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-05-04T11:34:51.000Z (about 2 years ago)
- Last Synced: 2024-05-05T11:47:02.100Z (about 2 years ago)
- Topics: r, r-package, sciviews, statistical-inference, statistical-tests
- Language: R
- Homepage: https://www.sciviews.org/inferit/
- Size: 3.92 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Hypothesis Tests and Statistical Distributions for 'SciViews::R' 
[](https://github.com/SciViews/inferit/actions/workflows/R-CMD-check.yaml) [](https://codecov.io/gh/SciViews/inferit?branch=main) [](https://cran.r-project.org/package=inferit) [](https://sciviews.r-universe.dev/inferit) [](https://opensource.org/licenses/MIT) [](https://lifecycle.r-lib.org/articles/stages.html#experimental)
Inference Tools for SciViews::R
## Installation
{inferit} is not available from CRAN yet. You should install it from the [SciViews R-Universe](https://sciviews.r-universe.dev). You would also need the following packages: {chart} as an alternate formula interface to {ggplot2}, {tabularise} to produce publication-ready (rich-formatted) tabular output, {equatags} and {equatiomatic} packages are optional additions to tabularise to display equations and {data.io} is useful too because it manages labels and units that {chart} and {tabularise} use. To install these six packages and their dependencies, run the following command in R:
``` r
install.packages(c('inferit', 'chart', 'tabularise', 'equatags', 'equatiomatic', 'data.io'),
repos = c('https://sciviews.r-universe.dev', 'https://cloud.r-project.org'))
```
You can also install the latest development version of {inferit}. Make sure you have the {remotes} R package installed:
``` r
# install.packages("remotes")
remotes::install_github("SciViews/inferit")
```
## Usage
You can get further help about this package this way: Make the {inferit} package available in your R session:
``` r
library(inferit)
```
Get help about this package:
``` r
library(help = "inferit")
help("inferit-package")
vignette("inferit") # None is installed with install_github()
```
For further instructions, please, refer to the help pages at .
## Code of Conduct
Please note that the {inferit} package is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/1/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.