| review_accessors | R Documentation |
Extract canonical review components
anchor_review(x, required = TRUE)
precision_review(x, required = TRUE)
x |
A fitted |
required |
Logical. If |
anchor_review() returns the fitted object's config$anchor_review
component. precision_review() returns the diagnostics
precision_review table. These helpers intentionally do not search older
field names.
anchor_review() returns an mfrm_anchor_review-like object when available.
precision_review() returns the precision-review table when available.
If required = FALSE and no component is available, both helpers return
NULL.
fit_like <- list(config = list(
anchor_review = structure(list(issue_counts = data.frame()),
class = "mfrm_anchor_review")
))
anchor_review(fit_like)
diag_like <- list(
precision_review = data.frame(Check = "SE", Status = "ok", Detail = "Model-based")
)
precision_review(diag_like)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.