| print.pb_regression | R Documentation |
Displays a concise summary of Passing-Bablok regression results, including slope and intercept estimates with confidence intervals.
## S3 method for class 'pb_regression'
print(x, digits = 3, ...)
x |
An object of class |
digits |
Number of significant digits to display (default: 3). |
... |
Additional arguments (currently ignored). |
Invisibly returns the input object.
summary.pb_regression() for detailed output
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.