| summary.pb_regression | R Documentation |
Provides a detailed summary of Passing-Bablok regression results, including regression coefficients, confidence intervals, linearity test (CUSUM), and interpretation guidance.
## S3 method for class 'pb_regression'
summary(object, ...)
object |
An object of class |
... |
Additional arguments (currently ignored). |
The summary includes:
Regression coefficients with confidence intervals
CUSUM test for linearity assumption
Interpretation of slope and intercept CIs
Method agreement conclusion
Invisibly returns a list with summary statistics.
print.pb_regression() for concise 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)
summary(pb)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.