Travis build status Coverage Release DownloadsMonthly DownloadsTotal Issues

R package jfa

jfa is a multi-functional R package for statistical auditing. The package provides the user with four generic functions for planning, performing, and evaluating an audit and its results. Specifically, it contains functions for calculating sample sizes for substantive testing, sampling from data according to standard auditing techniques, and calculating various confidence bounds for the maximum error from data or summary statistics. The package also allows the user to create a Bayesian prior distribution for use in these functions. The jfa package can be used to set up the entire audit sampling workflow.

For complete documentation, see the package manual.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the GPL-3 License.

Installing

These instructions will get you a copy of the jfa package up and running on your local machine for use in R and RStudio.

Prerequisites

Downloading

R package jfa is simple to download and set-up. The live version from CRAN (0.2.0) can be downloaded by running the following command in R:

install.packages("jfa")

The jfa package can then be loaded in RStudio by typing:

library(jfa)

Examples can be found in the package vignette.

Functions

Below is a list of the available functions in the current version of jfa, sorted by their occurrence in the standard audit sampling workflow.

auditPrior: Creating a prior distribution for substantive testing

This function creates a prior distribution according to one of several methods, including the audit risk model and assessments of the inherent and control risk. The returned object is of class jfaPrior and can be used with associated print() and plot() methods. jfaPrior results can also be used as input argument for the prior argument in other functions.

auditPrior(materiality = NULL, confidence = 0.95, method = "arm", ir = 1, cr = 1, expectedError = 0, likelihood = "binomial", N = NULL, pHmin = NULL, pHplus = NULL, factor = 1, sampleN = 0, sampleK = 0)

Planning: Calculating an audit sample size

This function calculates the required sample size for an audit, based on the poisson, binomial, or hypergeometric likelihood. A prior can be specified to combine with the specified likelihood in order to perform Bayesian planning. The returned jfaPlanning object has a print() and a plot() method.

planning(materiality = NULL, confidence = 0.95, expectedError = 0, minPrecision = NULL, likelihood = "poisson", N = NULL, maxSize = 5000, increase = 1, prior = FALSE, kPrior = 0, nPrior = 0)

Sampling: Selecting transactions from a population

This function takes a data frame and performs sampling according to one of three algorithms: random sampling, cell sampling, or fixed interval sampling in combination with either record sampling or monetary unit sampling. The returned jfaSampling object has a print() and a plot() method. The sampleSize argument can also be an object of class jfaPlanning.

sampling(population, sampleSize, bookValues = NULL, units = "records", algorithm = "random", intervalStartingPoint = 1, ordered = TRUE, ascending = TRUE, withReplacement = FALSE, seed = 1)

Evaluation: Calculating confidence bounds for audit samples

This function takes a sample data frame or summary statistics about an evaluated audit sample and calculates a confidence bound according to a specified method. The returned jfaEvalution object has a print() and plot() functions.

evaluation(sample = NULL, bookValues = NULL, auditValues = NULL, confidence = 0.95, nSumstats = NULL, kSumstats = NULL, method = "binomial", materiality = NULL, N = NULL, prior = FALSE, nPrior = 0, kPrior = 0, rohrbachDelta = 2.7, momentPoptype = "accounts", populationBookValue = NULL, minPrecision = NULL, csA = 1, csB = 3, csMu = 0.5)

Poster