xReport
is supposed to generate a html-formatted report.
xReport(obj, rmd = NULL, output_format = NULL, output_file = NULL,
output_dir = NULL, quiet = T, verbose = T, ...)
an R object. Usually a S3-class object storing results such as an 'eTerm' object
the R markdown file. If NULL, the pre-prepared one in the directory 'inst/DynamicReport' of the XGR package will be used
the output format rendered from the R markdown file. If NULL, the output format is the first one defined within the R markdown file. The advanced use is to pass an output format object via rmarkdown::html_document()
the name of the output file. If NULL, the output filename will be based on the filename of R markdown file (extension replaced)
the directory of the output file
the logic specifying whether to suppress printing of the pandoc command line
logical to indicate whether the messages will be displayed in the screen. By default, it sets to false for no display
additional parameters used in rmarkdown::render
the message on the rendered output file and directory.
# NOT RUN {
# Load the XGR package and specify the location of built-in data
library(XGR)
RData.location <- "http://galahad.well.ox.ac.uk/bigdata/"
# }
# NOT RUN {
res <- xReport(eTerm)
# advanced use
output_format <-
rmarkdown::html_document(number_sections=T,theme="journal",
hightlight="espresso",code_folding="hide")
res <- xReport(eTerm, output_format=output_format)
# }
Run the code above in your browser using DataLab