Skip to contents

Set one or more package options. Each supplied name is stored with the "DescToolsX." prefix and can be read with getOption().

Usage

setDescToolsXOption(...)

Arguments

...

named option values

Value

a named list containing the previous values, invisibly

Details

Options used by descriptive methods include:

plotit

whether descriptive functions create plots by default

footnote

characters used as footnote markers

lang

language used for month and weekday names

Examples

old <- getOption("DescToolsX.plotit")
setDescToolsXOption(plotit = FALSE)
getOption("DescToolsX.plotit")
#> [1] FALSE
options(DescToolsX.plotit = old)