boxuancui / DataExplorer

Automate Data Exploration and Treatment
http://boxuancui.github.io/DataExplorer/
Other
513 stars 88 forks source link

Add function to customize report #41

Closed boxuancui closed 6 years ago

boxuancui commented 7 years ago
boxuancui commented 6 years ago

Might be able to customize report through

rmarkdown::render(
    ...,
    params = list(
        data = data,
        report_configuration = list() ## function name should be the key and associated arguments should be the list value
    )
)
leppott commented 6 years ago

I added the following into the YAML header to get date/time and author of the report.

author: "r Sys.getenv('USERNAME')" date: "r Sys.time()"