View source: R/empirical_likelihood_tests.R
Empirical and exponential empirical likelihood tests for two samples | R Documentation |
Empirical and exponential empirical likelihood tests for two samples.
eel.test2(x, y, tol = 1e-09, logged = FALSE)
el.test2(x, y, tol = 1e-07, logged = FALSE)
x |
A numerical vector. |
y |
Another numerical vector. |
tol |
The tolerance value to stop the iterations of the Newton-Raphson. |
logged |
Should the logarithm of the p-value be returned? TRUE or FALSE. |
Empirical and exponential empirical likelihood are two non parametric hypothesis testing methods. We can use them as non parametric alternatives to the t-test. Newton-Raphson is used to maximise the log-likelihood ratio test statistic. In the case of no solution, NULL is returned.
iters |
The number of iterations required by the Newton-Raphson algorithm. If no covnergence occured this is NULL. |
info |
A vector with three elements, the value of the |
p1 |
The estimated probabilities, one for each observation for the first sample. If no covnergence occured this is NULL. |
p2 |
The estimated probabilities, one for each observation for the second sample. If no covnergence occured this is NULL. |
Michail Tsagris
R implementation and documentation: Michail Tsagris <mtsagris@uoc.gr> and Manos Papadakis <papadakm95@gmail.com>.
Owen A. B. (2001). Empirical likelihood. Chapman and Hall/CRC Press.
ftests, ttests, ttest
x <- rnorm(200)
y <- rnorm(300)
eel.test2(x, y)
el.test2(x, y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.