osum.options | R Documentation |
osum
This function enables users to customize and review specific options
for the osum
package.
osum.options(
osum.data.class.width,
osum.format.extent,
osum.information,
osum.max.rows
)
osum.data.class.width |
integer indicating the width of the |
osum.format.extent |
logical indicating whether the |
osum.information |
character vector specifying what information to return by default. This can be any subset of
|
osum.max.rows |
integer, maximal number of rows to print. |
Invoking osum.options()
with no arguments returns a list with the current
values of the osum
package options.
To access the value of a single option, one can pass a character string with its
name name as argument, e.g. osum.options("osum.max.rows")
, which will return a named
list of length one with the option's value.
For osum.options()
, a list of all the osum
package options sorted by name.
For osum.options(name)
, a list of length one containing the set value, or
NULL
if it is unset. For uses setting one or more options, a list
with the previous values of the options changed (returned invisibly).
options
for global options,
print.objects.summary
and summary.objects.summary
for
using specific osum
package options.
old_opt <- osum.options(osum.data.class.width = 12, osum.max.rows = 25)
cat("current values of all 'osum' options:", sep = "\n")
print(osum.options())
cat("previous values of the changed 'osum' options:", sep = "\n")
print(old_opt)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.