mkdCodeChunkCommented: mkdCodeChunkCommented

Description Usage Arguments Value Examples

Description

it creates a complete code chunk, adding a natural language comment before of it.

Usage

1
2
3
4
5
6
7
mkdCodeChunkCommented(
  object,
  comment = NULL,
  code,
  optionList = getOptionsList(object),
  sourceFilesList = NULL
)

Arguments

object

an easyreporting class object

comment

a string with the natural language comment for the chunk.

code

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.

Value

none

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
rd <- easyreporting(filenamePath="./project_report",
                        title="example_report", author=c("It's me"))
optList <- makeOptionsList(includeFlag=TRUE, cacheFlag=TRUE)
mkdCodeChunkCommented(rd,
                comment="This is the comment of the following code chunk",
                code="a <- 1\n b <- 2\n (c <- a+b)\n", optionList=optList,
                sourceFilesList=NULL)

## End(Not run)

drighelli/easyreporting documentation built on March 22, 2021, 9:12 p.m.