gfiConfInt {gfilogisreg} | R Documentation |
Fiducial confidence interval
Description
Fiducial confidence interval of a parameter of interest.
Usage
gfiConfInt(parameter, fidsamples, conf = 0.95)
Arguments
parameter |
a right-sided formula defining the parameter of interest |
fidsamples |
fiducial samples, the output of |
conf |
confidence level |
Value
The fiducial confidence interval of the parameter.
Examples
y <- c(
0, 0, 0, 1,
0, 1, 1, 1
)
group <- gl(2, 4)
fidsamples <- gfilogisreg(y ~ 0 + group, N = 500) # (N=500 is not serious)
expit <- function(x) exp(x) / (1+exp(x))
gfiConfInt(~ expit(group1) - expit(group2), fidsamples)
[Package gfilogisreg version 1.0.3 Index]