Learn R Programming

fEGarch (version 1.0.1)

locpol_spec_methods: Accessors for Class "locpol_spec"

Description

Access and change elements in objects of class "locpol_spec". The method names represent the name of the element to access / manipulate.

Usage

# S4 method for locpol_spec
poly_order(x)

# S4 method for locpol_spec kernel_order(x)

# S4 method for locpol_spec boundary_method(x)

# S4 method for locpol_spec bwidth(x)

# S4 method for locpol_spec poly_order(x) <- value

# S4 method for locpol_spec kernel_order(x) <- value

# S4 method for locpol_spec boundary_method(x) <- value

# S4 method for locpol_spec bwidth(x) <- value

Value

These methods return an object of class "locpol_spec".

Arguments

x

the input object or object to modify.

value

the value to modify the object x with.

Details

These methods are intended to be used for accessing or manipulating individual elements of objects of class "locpol_spec".

Examples

Run this code
test_obj <- locpol_spec()
poly_order(test_obj)
poly_order(test_obj) <- 1
poly_order(test_obj)

Run the code above in your browser using DataLab