sqrtnp: sqrtnp

View source: R/sqrtnp.R

sqrtnpR Documentation

sqrtnp

Description

Computes sqrt(n*p*(1-p)) for all combinations of n and p. If the result has only digits after the decimal point then these n, p, and sqrt(n*p*(1-p)) is returned in a data frame.

Usage

sqrtnp(n, p, digits = 2, tol = 10^(-digits - 4))

Arguments

n

numeric: vector of observations numbers

p

numeric: vector of probabilities

digits

numeric: number of digits to check (default: 2)

tol

numeric: tolerance (default: 10^(-digits-4))

Details

If abs(v-round(v, digits))<tol then a number v is consired as a number with only digits after the decimal point.

Value

a data frame with the columns n, p, np (=np) and snp (=sqrt(np(1-p)))

Examples

n <- 30:250
p <- (10:40)/100
sqrtnp(n, p)

sigbertklinke/exams2moodle documentation built on July 6, 2023, 3:26 p.m.