Learn R Programming

plspolychaos (version 1.1-0)

getNames: Display Structure of a Class

Description

Display the names, class and length of all the slots of a PCEpoly object.

Usage

getNames(object)

Arguments

object
object from class PCEpoly.

Value

Nothing. It is a display function.

Details

It is a generic function. Its method is defined in classe PCEpoly.

See Also

Classe PCEpoly.

Examples

Run this code
### Load the datase
load(system.file("extdata",  "ishigami200.Rda", package="plspolychaos"))
X <- ishi200[, -ncol(ishi200)] # inputs
Y <- ishi200[,  ncol(ishi200)] # output
pce <- polyLeg(X, Y, degree=6)
### Display recursively the names, class and 
### length of all the components.
getNames(pce)

Run the code above in your browser using DataLab