order_poly,smoothing_options-method {deseats}R Documentation

Retrieve or Set Smoothing Options

Description

Retrieve smoothing options from or set them in an object of class "smoothing_options".

Usage

## S4 method for signature 'smoothing_options'
order_poly(object)

## S4 replacement method for signature 'smoothing_options'
order_poly(object) <- value

## S4 method for signature 'smoothing_options'
season(object)

## S4 replacement method for signature 'smoothing_options'
season(object) <- value

## S4 method for signature 'smoothing_options'
kernel_fun(object)

## S4 replacement method for signature 'smoothing_options'
kernel_fun(object) <- value

## S4 method for signature 'smoothing_options'
bwidth(object)

## S4 replacement method for signature 'smoothing_options'
bwidth(object) <- value

## S4 method for signature 'smoothing_options'
boundary_method(object)

## S4 replacement method for signature 'smoothing_options'
boundary_method(object) <- value

Arguments

object

an object of class "smoothing_options".

value

the value to set the corresponding option to.

Details

Various methods are provided to either retrieve smoothing option settings from an object of class "smoothing_options" or to adjust them within such an object.

Value

The methods without <- return the corresponding settings in the supplied object. The methods with <- set the corresponding option in the provided object.

Author(s)

Examples

opts <- set_options()
opts
order_poly(opts)
order_poly(opts) <- 3
opts


[Package deseats version 1.0.0 Index]