Given a true score, what is the probability a true score is below a threshold?
Source:R/main.R
p_true_score_less_than_threshold.Rd
Assumes multivaraiate normality of true and observed scores
Examples
# What is the probability that a true score is 70 or less when
# the observed score is 65, the reliability coefficient is .95,
# the population mean is 100, and the population standard
# deviation is 15?
p_true_score_less_than_threshold(
x = 65,
threshold = 70,
rxx = .95,
mu = 100,
sigma = 15)
#> [1] 0.8399214