View source: R/statcheckReport.R
statcheckReport | R Documentation |
This function uses R Markdown to generate a nicely formatted HTML report of
statcheck
output.
statcheckReport(statcheckOutput, outputFileName, outputDir)
statcheckOutput |
statcheck output of one of the following functions:
|
outputFileName |
String specifying the file name under which you want to save the generated HTML report. The extension ".html" is automatically added, so doesn't need to be specified in this argument. |
outputDir |
String specifying the directory in which you want to save the generated HTML report. |
This function temporarily saves the inserted statcheck
output as an
.RData file in the "output" folder in the statcheck package directory. This
file is then called by the .Rmd template that is saved in the folder "rmd",
also in the statcheck package directory. After the HTML report is generated,
the .RData file is removed again.
An HTML report, saved in the directory specified in the argument "outputDir".
## Not run:
# first generate statcheck output, for instance by using the statcheck()
function
txt <- "blablabla the effect was very significant (t(100)=1, p < 0.001)"
stat <- statcheck(txt)
# next, use this output to generate a nice HTML report of the results
statcheckReport(stat, outputFileName="statcheckHTMLReport",
outputDir="C:/mydocuments/results")
# you can now find your HTML report in the folder
# "C:/mydocuments/results" under the name "statcheckHTMLReport.html".
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.