View source: R/precision_methods.R
| print.precision_study | R Documentation |
Displays a concise summary of precision study results, including variance components and key precision estimates.
## S3 method for class 'precision_study'
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.precision_study() for detailed output
# Create example data
set.seed(42)
data <- data.frame(
day = rep(1:5, each = 4),
value = rnorm(20, mean = 100, sd = 5)
)
data$value <- data$value + rep(rnorm(5, 0, 3), each = 4)
prec <- precision_study(data, value = "value", day = "day")
print(prec)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.