| print.ba_analysis | R Documentation |
Displays a concise summary of Bland-Altman analysis results.
## S3 method for class 'ba_analysis'
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 x.
set.seed(42)
method_a <- rnorm(50, mean = 100, sd = 15)
method_b <- method_a + rnorm(50, mean = 2, sd = 5)
ba <- ba_analysis(method_a, method_b)
print(ba)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.