View source: R/precision_methods.R
| summary.precision_study | R Documentation |
Provides a detailed summary of precision study results, including variance components, ANOVA table (for ANOVA method), precision estimates with confidence intervals, and design information.
## S3 method for class 'precision_study'
summary(object, ...)
object |
An object of class |
... |
Additional arguments (currently ignored). |
An object of class summary.precision_study containing:
The original function call.
Number of observations.
Number of observations excluded due to NAs.
Design information list.
Analysis settings.
Data frame of variance components.
Data frame of precision estimates.
ANOVA table (if method = "anova").
Results by sample (if multiple samples).
print.precision_study() for concise 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")
summary(prec)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.