report {jfa} | R Documentation |
report()
takes an object of class jfaEvaluation
as returned by the evaluation()
function automatically generates a html
or pdf
report of the results.
For more details on how to use this function, see the package vignette:
vignette('jfa', package = 'jfa')
report(object, file = 'report.html', format = c('html_document', 'pdf_document'))
object |
an object of class |
file |
a character specifying the name of the report (e.g. |
format |
a character specifying the output format of the report. Possible options are |
A html
or pdf
file containing a report of the evaluation.
Koen Derks, k.derks@nyenrode.nl
auditPrior
planning
selection
evaluation
data("BuildIt")
# Draw a sample of 100 monetary units from the population using
# fixed interval monetary unit sampling
sample <- selection(
data = BuildIt, size = 100, method = "interval",
units = "values", values = "bookValue"
)$sample
# Evaluate using the Stringer bound
result <- evaluation(
conf.level = 0.95, materiality = 0.05, method = "stringer",
data = sample, values = "bookValue", values.audit = "auditValue"
)
## Not run:
report(result)
## End(Not run)