summary.motbf: Summary of an '"motbf"' object

View source: R/MoTBFClass.R

summary.motbfR Documentation

Summary of an "motbf" object

Description

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

Usage

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

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

Arguments

object

An object of class "motbf".

...

further arguments passed to or from other methods.

x

An object of class "summary.motbf".

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

## 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

MoTBFs documentation built on April 18, 2022, 5:06 p.m.

Related to summary.motbf in MoTBFs...