Description Usage Arguments Value Examples
it creates a complete code chunk, adding a natural language comment before of it.
1 2 3 4 5 6 7 | mkdCodeChunkCommented(
object,
commentMsg = NULL,
codeMsg,
optionList = getOptionsList(object),
sourceFilesList = NULL
)
|
object |
an easyreporting class object |
commentMsg |
a string with the natural language comment for the chunk. |
codeMsg |
a string within the code. |
optionList |
a list of options (default is the class options). |
sourceFilesList |
a optional list of files to source inside the chunk. |
none
1 2 3 4 5 6 7 | rd <- easyreporting(filenamePath="./project_report",
title="example_report", author=c("It's me"))
optList <- makeOptionsList(includeFlag=TRUE, cacheFlag=TRUE)
mkdCodeChunkCommented(rd,
commentMsg="This is the comment of the following code chunk",
codeMsg="a <- 1\nb <- 2\n(c <- a+b)\n", optionList=optList,
sourceFilesList=NULL)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.