ORLI {LBI} | R Documentation |
Odds Ratio and its Likelihood Interval between two groups without strata
Description
Odds ratio and its likelihood interval between two groups without stratification
Usage
ORLI(y1, n1, y2, n2, conf.level=0.95, k, eps=1e-8)
Arguments
y1 |
positive event count of test (the first) group |
n1 |
total count of the test (the first) group. Maximum allowable value is 1e8. |
y2 |
positive event count of control (the second) group |
n2 |
total count of control (the second) group. Maximum allowable value is 1e8. |
conf.level |
approximate confidence level to calculate k when k is missing. |
k |
1/k likelihood interval will be provided |
eps |
absolute value less than eps is regarded as negligible |
Details
It calculates risk (proportion) difference and its likelihood interval between the two groups. The likelihood interval is asymmetric, and there is no standard error in the output. This does not support stratification.
Value
There is no standard error.
odd1 |
odd from the first group, y1/(n1 - y1) |
odd2 |
odd from the second group, y2/(n2 - y2) |
OR |
odds ratio, odd1/odd2 |
lower |
lower likelihood limit of OR |
upper |
upper likelihood limit of OR |
Author(s)
Kyun-Seop Bae k@acr.kr
Examples
ORLI(7, 10, 3, 10)
ORLI(3, 10, 7, 10)