chunkyOpts: Default and current chunky options

Description Usage Format Note Examples

Description

Options for functions in the chunky package. When running R code, the object chunky_opts (default options) is not modified by chunk headers (local chunk options are merged with default options), whereas chunky_opts_current (current options) changes with different chunk headers and it always reflects the options for the current chunk.

Normally we set up the global options once in the first code chunk in a document using chunky_opts$set(), so that all latter chunks will use these options. Note the global options set in one chunk will not affect the options in this chunk itself, and that is why we often need to set global options in a separate chunk.

Below is a list of default chunk options, retrieved via chunky_opts$get():

\Sexpr[results=verbatim]{str(chunky::chunky_opts$get())}

Usage

1
2
3

Format

An object of class list of length 5.

Note

chunky_opts_current is read-only in the sense that it does nothing if you call chunky_opts_current$set(); you can only query the options via chunky_opts_current$get().

Examples

1
chunky_opts$get('name')

yonicd/chunky documentation built on May 29, 2019, 12:18 p.m.