gfiConfInt: Fiducial confidence interval

Description Usage Arguments Value Examples

View source: R/inference.R

Description

Fiducial confidence interval of a parameter of interest.

Usage

1
gfiConfInt(parameter, fidsamples, conf = 0.95)

Arguments

parameter

a right-sided formula defining the parameter of interest

fidsamples

fiducial samples, the output of gfilogisreg

conf

confidence level

Value

The fiducial confidence interval of the parameter.

Examples

1
2
3
4
5
6
7
8
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)

gfilogisreg documentation built on Dec. 21, 2021, 5:06 p.m.