Closed langfob closed 5 years ago
@langfob This is now available using create_report(..., report_title = "My Fancy Report")
.
@boxuancui Great. I couldn't find this option in any of the source code or the documentation or your wiki articles or the documentation for render. It's exactly what I needed. Thanks.
Would it be useful and easy to allow the user to specify their own report title in the call to
create_report
?I often have several analyses open at once but they all have the same title: "Data Profiling Report", which makes it harder to figure out which one I'm looking at.
Currently, the title seems to be hard-coded in
rmd_template/report.rmd
. I know that in an Rmd file I could print a variable title by saying:So, could you
create_report
that defaults to "Data Profiling Report",render
call insidecreate_report
,report.rmd
file?That seems straightforward, but I'm also not expert enough to know if that would create some kind of security risk because R would be executing
params$mytitle
.In any case thanks a lot for creating this package. It's very useful.