Description Usage Arguments Value Examples
This function generates a customized Rmarkdown based html report for priliminary quality assurance.
1 2 3 4 5 6 7 | makeReport(
screenData,
showCode = FALSE,
title = "Report for my drug screening project",
author = "Author Name",
ifPlatePlot = FALSE
)
|
screenData |
a data table that contains the screen results generated by |
showCode |
a boolean value, whether to show code in the html report. |
title |
a character string specifying the title for the html report |
author |
a character string specifying the author name |
ifPlatePlot |
a boolean value, whether to make plate heatmap plots in the report. Plate heatmap plots can be time consuming for large screen datasets. |
This function creates an html file named 'report.html' in a folder named 'report' in the working directory.
1 2 3 4 5 6 7 | # load processed data
data(screenData_normalized)
# make html report
makeReport(screenData_normalized, showCode = TRUE,
title = 'Report example',
author = 'Author Name', ifPlatePlot = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.