View source: R/deming_methods.R
| summary.deming_regression | R Documentation |
Provides a detailed summary of Deming regression results, including regression coefficients, confidence intervals, standard errors, and interpretation guidance.
## S3 method for class 'deming_regression'
summary(object, ...)
object |
An object of class |
... |
Additional arguments (currently ignored). |
The summary includes:
Regression coefficients with standard errors and confidence intervals
Interpretation of slope and intercept CIs
Method agreement conclusion
Residual summary statistics
Invisibly returns a list with summary statistics.
print.deming_regression() for concise output
set.seed(42)
true_vals <- rnorm(50, 100, 20)
method_a <- true_vals + rnorm(50, sd = 5)
method_b <- 1.05 * true_vals + 3 + rnorm(50, sd = 5)
dm <- deming_regression(method_a, method_b)
summary(dm)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.