An open API service indexing awesome lists of open source software.

https://github.com/koenderks/jfa

jfa is an R package that provides statistical methods for auditing. Its functionality and intended workflow are implemented with a graphical user interface in the Audit module of JASP (https://jasp-stats.org), a free and open-source software program for statistical analyses.
https://github.com/koenderks/jfa

algorithm-auditing audit audit-sampling bayesian data-auditing jasp jasp-for-audit r r-package rstats statistical-audit statistics

Last synced: 11 months ago
JSON representation

jfa is an R package that provides statistical methods for auditing. Its functionality and intended workflow are implemented with a graphical user interface in the Audit module of JASP (https://jasp-stats.org), a free and open-source software program for statistical analyses.

Awesome Lists containing this project

README

          

[![CRAN](https://img.shields.io/cran/v/jfa?color=yellow&label=CRAN&logo=r)](https://cran.r-project.org/package=jfa)
[![R_build_status](https://github.com/koenderks/jfa/workflows/Build/badge.svg)](https://github.com/koenderks/jfa/actions)
[![Codecov](https://codecov.io/gh/koenderks/jfa/branch/development/graph/badge.svg?token=ZoxIB8p8PW)](https://app.codecov.io/gh/koenderks/jfa)
[![Bugs](https://img.shields.io/github/issues/koenderks/jfa/bug?label=Bugs&logo=github&logoColor=%23FFF&color=brightgreen)](https://github.com/koenderks/jfa/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
[![Total](https://cranlogs.r-pkg.org/badges/grand-total/jfa?color=blue)](https://cranlogs.r-pkg.org)
[![Licence](https://img.shields.io/badge/licence-GPL--3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html)

# jfa: Statistical Methods for Auditing

**jfa** is an R package that provides statistical methods for auditing. The package includes functions for planning, performing, and evaluating audit samples compliant with international auditing standards, as well as functions for auditing data, such as testing the distribution of leading digits against Benford's law, and functions for auditing algorithms with respect to fairness. In addition to offering classical (frequentist) methods, **jfa** also provides a straightforward implementation of their Bayesian counterparts.

- [Audit sampling: Get started](https://koenderks.github.io/jfa/articles/audit-sampling.html)
- [Data auditing: Get started](https://koenderks.github.io/jfa/articles/data-auditing.html)
- [Algorithm auditing: Get started](https://koenderks.github.io/jfa/articles/algorithm-auditing.html)

The functionality of the **jfa** package and its intended workflow are implemented with a graphical user interface in the [Audit](https://github.com/jasp-stats/jaspAudit) module of [JASP](https://jasp-stats.org), a free and open-source software program for statistical analyses.

---

### Resources

- [Package website](https://koenderks.github.io/jfa/) (online documentation, vignettes)
- [Textbook](https://koenderks.github.io/sasr/) (detailed information, code examples)
- [Ask a question](https://github.com/koenderks/jfa/discussions) (discussion forum)
- [Open an issue](https://github.com/koenderks/jfa/issues) (bug reports, feature requests)

### Installation

#### Latest Release

The most recent **jfa** release can be installed from [CRAN](https://cran.r-project.org/package=jfa) via:

```r
install.packages("jfa")
```

#### Development Version

To install the development version from GitHub, first make sure that you can install the **rstan** package and C++ toolchain by following these [instructions](https://github.com/stan-dev/rstan/wiki/RStan-Getting-Started). Once **rstan** is successfully installed, you can install **jfa** from GitHub using the **remotes** package by executing the following command in R:

```r
# install.packages("remotes")
remotes::install_github("koenderks/jfa", INSTALL_opts = "--no-multiarch")
```