check_distribution: Check and normalise distributions

Description Usage Arguments Value Examples

View source: R/tools.R

Description

Check if the given .data is a distribution and normalise it if necessary with an optional laplace correction.

Usage

1
2
3
4
5
6
7
8
check_distribution(
  .data,
  .do.norm = NA,
  .laplace = 1,
  .na.val = 0,
  .warn.zero = FALSE,
  .warn.sum = TRUE
)

Arguments

.data

Numeric vector of values.

.do.norm

One of the three values - NA, TRUE or FALSE. If NA then check for distrubution (sum(.data) == 1) and normalise if needed with the given laplace correction value. if TRUE then do normalisation and laplace correction. If FALSE then don't do normalisaton and laplace correction.

.laplace

Value for the laplace correction.

.na.val

Replace all NAs with this value.

.warn.zero

if TRUE then the function checks if in the resulted vector (after normalisation) are any zeros, and prints a warning message if there are some.

.warn.sum

if TRUE then the function checks if the sum of resulted vector (after normalisation) is equal to one, and prints a warning message if not.

Value

Numeric vector.

Examples

1
2
3
immunarch:::check_distribution(c(1, 2, 3))
immunarch:::check_distribution(c(1, 2, 3), TRUE)
immunarch:::check_distribution(c(1, 2, 3), FALSE)

abrown435/immunarch-test documentation built on July 29, 2020, 12:04 a.m.