| easyreporting {easyreporting} | R Documentation |
An S4 class for managing rmarkdown report. Each instance describes an rmarkdown file.
easyreporting( filenamePath, title, author, optionList = NULL, documentType = "rmarkdown::html_document", bibfile = "" ) easyreporting( filenamePath, title, author, optionList = NULL, documentType = "rmarkdown::html_document", bibfile = "" )
filenamePath |
the path with the name of the rmarkdown. |
title |
the title of the report section. |
author |
the author(s) of the report. |
optionList |
a list of options for the general rmarkdown document. |
documentType |
type of report final document, if author(s) is a |
bibfile |
a bibfile for bibliography. |
an S4 easyreporting class instance
filenamePaththe path with the name of the rmarkdown.
titlethe title of the report section.
authorthe author(s) of the report.
typeof report final document, if author(s) is a person
it will be distill::distill_article (rmarkdown::html_document default)
bibfilea bibfile for bibliography.
optionLista list of options for the general rmarkdown document.
rd <- easyreporting(filenamePath="./project_report",
title="example_report", author="It's me")