Learn R Programming

valytics (version 0.4.0)

print.precision_study: Print method for precision_study objects

Description

Displays a concise summary of precision study results, including variance components and key precision estimates.

Usage

# S3 method for precision_study
print(x, digits = 3, ...)

Value

Invisibly returns the input object x.

Arguments

x

An object of class precision_study.

digits

Number of significant digits to display (default: 3).

...

Additional arguments (currently ignored).

See Also

summary.precision_study() for detailed output

Examples

Run this code
# 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)

Run the code above in your browser using DataLab