powered by
Computes the A, B, C, P values used in probability plotting for censored data.
cohn(obs, censored, na.action = getOption("na.action"))
An object of class "cohn" containing the Cohn statistics.
"cohn"
A numeric vector of observations.
A logical vector indicating which observations are censored.
Function to handle missing values (default is getOption("na.action")).
obs <- c(1, 2, 3, 4, 5, 6, 7) cens <- c(TRUE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE) NADA2:::cohn(obs, cens)
Run the code above in your browser using DataLab