Nothing
#' Apply Exponential distribution to sample and compute required components for the test.
#'
#' @description Compute Maximum likelihood estimates of the parameters in Exponential distribution, Score function evaluated at the sample,
#' and probability inverse transformed (PIT) values of sample.
#'
#' @param x a numeric vector.
#'
#' @return a list with three elements.
#'
#' @noRd
applyExponential = function(x){
# Calculate MLE of parameter for Exponential distribution
par <- expMLE(x)
# Compute score function for sample
S1 <- expScore(x, theta = par)
S <- cbind(S1)
# Calculate the probability inverse transform of sample
pit <- expPIT(x, theta = par)
# Define the list to return
res <- list(Score = S, pit = pit, par = par)
return(res)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.