setOptionsList-easyreporting-method: setOptionsList

Description Usage Arguments Value Examples

Description

set an optionList to the class

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## S4 method for signature 'easyreporting'
setOptionsList(
  object,
  cacheFlag = TRUE,
  evalFlag = TRUE,
  echoFlag = TRUE,
  warningFlag = FALSE,
  showMessages = FALSE,
  includeFlag = TRUE
)

Arguments

object

an easyreporting class object

cacheFlag

boolean for caching chunk data (default TRUE)

evalFlag

boolean for evaluating the code chunk in the compiled version (default TRUE)

echoFlag

boolean for showing the code chunk (default TRUE)

warningFlag

boolean for showing the chunk warnings (default FALSE)

showMessages

boolean for showing the chunk warnings in compiled

includeFlag

boolean for including the code chunk in the compiled version (default TRUE)

Value

none

Examples

1
2
3
4
5
6
7
8
9
rd <- easyreporting(filenamePath="./project_report",
                        title="example_report", author=c("It's me"))

## setting default option
setOptionsList(rd)

## modifying only some options
rd <- setOptionsList(rd, warningFlag=TRUE, 
        showMessages=TRUE, includeFlag=TRUE)

easyreporting documentation built on Nov. 8, 2020, 8:01 p.m.