MoTBFs (version 1.2)

summary.jointmotbf: Summary of a "jointmotbf" Object

Description

Summarize a "jointmotbf" object by describing its main points.

Usage

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

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

Arguments

object

An object of class "jointmotbf".

x

An object of class "summary.jointmotbf".

...

further arguments passed to or from other methods.

Value

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

See Also

parametersJointMoTBF and jointMoTBF

Examples

Run this code
# NOT RUN {
## 1. EXAMPLE
X <- rnorm(100)
Y <- rexp(100)
data <- data.frame(X, Y)
dim <- c(3,4)
param <- parametersJointMoTBF(data, dimensions=dim)
P <- jointMoTBF(param)
summary(P)
attributes(sP <- summary(P))
attributes(sP)
sP$Function
sP$Domain
sP$Iterations

##############################################################################
## MORE EXAMPLES #############################################################
##############################################################################
# }
# NOT RUN {
X <- rnorm(100)
Y <- rexp(100)
Z <- rnorm(100, mean=1)
data <- data.frame(X, Y, Z)
dim <- c(3,2,4)
param <- parametersJointMoTBF(data, dimensions=dim)
P <- jointMoTBF(param)
summary(P)
attributes(sP <- summary(P))
sP$Function
sP$Domain
sP$Iterations
# }
# NOT RUN {
##############################################################################
##############################################################################
# }

Run the code above in your browser using DataCamp Workspace