View source: R/deming_methods.R
| print.deming_regression | R Documentation |
Displays a concise summary of Deming regression results, including slope and intercept estimates with confidence intervals.
## S3 method for class 'deming_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.deming_regression() for detailed 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)
print(dm)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.