powered by
Displays a concise summary of Passing-Bablok regression results, including slope and intercept estimates with confidence intervals.
# S3 method for pb_regression print(x, digits = 3, ...)
Invisibly returns the input object.
An object of class pb_regression.
pb_regression
Number of significant digits to display (default: 3).
Additional arguments (currently ignored).
summary.pb_regression() for detailed output
summary.pb_regression()
set.seed(42) method_a <- rnorm(50, mean = 100, sd = 15) method_b <- 1.05 * method_a + 3 + rnorm(50, sd = 5) pb <- pb_regression(method_a, method_b) print(pb)
Run the code above in your browser using DataLab