MoTBFs (version 1.2)

summary.motbf: Summary of an "motbf" Object

Description

Summarize an "motbf" object by describing its main points.

Usage

# S3 method for motbf
summary(object, ...)

# S3 method for summary.motbf print(x, ...)

Arguments

object

An object of class "motbf".

x

An object of class "summary.motbf".

...

further arguments passed to or from other methods.

Value

The summary of an "motbf" object. It contains a list of elements with the most important information of the object.

See Also

univMoTBF

Examples

Run this code
# NOT RUN {
## Subclass 'MOP'
X <- rnorm(1000)
P <- univMoTBF(X, POTENTIAL_TYPE="MOP") ## or POTENTIAL_TYPE="MTE"
summary(P)
attributes(sP <- summary(P))
attributes(sP)
sP$Function
sP$Subclass
sP$Iterations

## Subclass 'MTE'
X <- rnorm(1000)
P <- univMoTBF(X, POTENTIAL_TYPE="MTE")
summary(P)
attributes(sP <- summary(P))
attributes(sP)
sP$Function
sP$Subclass
sP$Iterations
# }

Run the code above in your browser using DataLab