Description Usage Arguments Value Slots Examples
An S4 class for managing rmarkdown report. Each instance describes an rmarkdown file.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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.
1 2 | rd <- easyreporting(filenamePath="./project_report",
title="example_report", author="It's me")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.