View source: R/verify_precision.R
| print.verify_precision | R Documentation |
Displays verification results including observed vs. claimed precision, test statistics, and verification outcome.
## S3 method for class 'verify_precision'
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.
summary.verify_precision() for detailed output
set.seed(42)
measurements <- rnorm(25, mean = 100, sd = 3.5)
result <- verify_precision(measurements, claimed_cv = 4, mean_value = 100)
print(result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.