Provides a comprehensive summary of the results from an MRcare analysis,
including causal estimates, confidence intervals, and diagnostic information.
Usage
# S3 method for class 'mrcare'
summary(object, ..., ci_level = 0.95, digits = 3)
Arguments
- object
Results object from mr_care function
- ci_level
Confidence level for intervals. Default is 0.95
- digits
Number of digits to round results to. Default is 3
Value
A list of class "summary.mrcare" containing formatted summary information
Examples
if (FALSE) { # \dontrun{
results <- mr_care(exposure_data, outcome_data)
summary(results)
} # }