Description Usage Arguments Value Examples
Helper functions to help define parameters for selecting an appropriate
context
value.
1 2 3 4 | auto_context(
min = getOption("diffobj.context.auto.min"),
max = getOption("diffobj.context.auto.max")
)
|
min |
integer(1L), positive, set to zero to allow any context |
max |
integer(1L), set to negative to allow any context |
S4 object containing configuration parameters, for use as the
context
or parameter value in diff*
methods
1 2 3 4 5 6 7 | ## `pager="off"` for CRAN compliance; you may omit in normal use
diffChr(letters, letters[-13], context=auto_context(0, 3), pager="off")
diffChr(letters, letters[-13], context=auto_context(0, 10), pager="off")
diffChr(
letters, letters[-13], context=auto_context(0, 10), line.limit=3L,
pager="off"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.