This function creates a HTML report for a given eseis object, listing its complete processing history. The report serves both as a convenient way of browsing through objects and as a proper approach to documenting and saving scientific data and workflows.
write_report(object, file, title ="eseis report", browser =FALSE, css)
Arguments
object,: eseis object to be reported on
file: Character value, name of the output file (without extension)
title: Character value, title of the report
browser: Logical value, optionally open the HTML file in the default web browser after it has been rendered.
css: Character value, path to a CSS file to change the default styling of the HTML document.
Returns
HTML and .Rds file.
Details
The function heavily lends ideas from the function report_RLum()
written by Christoph Burow, which is contained in the package Luminescence. This function here is a truncated, tailored version with minimised availabilities.
Examples
## Not run:## load example data setdata(rockfall)## make report for rockfall objectwrite_report(object = rockfall_eseis, browser =TRUE)## End(Not run)