Learn R Programming

gfilinreg (version 2.0.1)

gfiSummary: Summary of fiducial samples

Description

Summary of the fiducial samples.

Usage

gfiSummary(fidsamples, conf = 0.95)

Arguments

fidsamples

fiducial samples, the output of gfilinreg or gfilinregPredictive

conf

confidence level

Value

A matrix with summary statistics: means, medians, and confidence intervals.

Examples

Run this code
# NOT RUN {
set.seed(666L)
dat <- data.frame(
  group = gl(2, 15), 
  y = c(2*rlogis(15L), 10 + 2*rlogis(15L))
)
gfi <- gfilinreg(
  y ~ 0 + group, distr = "logistic", data = dat, L = 30L, nthreads = 2L
)
gfiSummary(gfi)
# }

Run the code above in your browser using DataLab