Creates a standalone static HTML report for a falsifyr_attack object.
Arguments
- result
A
falsifyr_attackobject returned byattack().- file
Output HTML file path.
Examples
fit <- lm(score ~ treatment + age, data = fragile_trial)
result <- attack(fit, term = "treatment", attacks = "row_deletion", intensity = "fast")
out <- report(result, file = tempfile(fileext = ".html"))
file.exists(out)
#> [1] TRUE