The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.

gibbsTI provides tools for constructing one-sided and two-sided nonparametric tolerance intervals using calibrated Gibbs posteriors.
⚠️ Note: This package is currently under active development. The API is subject to change, and you may encounter bugs. Please report any issues or feedback via the GitHub Issue Tracker.
You can install the development version of gibbsTI from GitHub.
Since you are installing from source, ensure you have a functional build environment: * Windows: Rtools * macOS: Xcode command line tools
remotesRun the following commands in your R console:
# Install the remotes package if you don't have it
if (!requireNamespace("remotes", quietly = TRUE)) {
install.packages("remotes")
}
# Install gibbsTI
remotes::install_github("tpourmohamad/gibbsTI")library(gibbsTI)
set.seed(1)
x <- rnorm(50)
# One-sided upper 95% content / 90% confidence tolerance interval,
# with the Gibbs learning rate chosen by GPC calibration (the default).
fit <- gibbsTI(x, side = "one", type = "upper",
content = 0.95, confidence = 0.90)
print(fit)
summary(fit)
plot(fit)
# Two-sided interval
fit2 <- gibbsTI(x, side = "two", content = 0.95, confidence = 0.90)
summary(fit2)
# Skip calibration and use a fixed learning rate
fit3 <- gibbsTI(x, side = "one", type = "upper",
eta_method = "fixed", eta = 1)If you use gibbsTI, please cite:
Pourmohamad, T., Richardson, R., & Sansó, B. (2026). “Calibrated Bayesian Nonparametric Tolerance Intervals.” Technometrics, 1–27. https://doi.org/10.1080/00401706.2026.2699103
You can also run citation("gibbsTI") in R.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.