summary.jointmotbf {MoTBFs} | R Documentation |
Summary of a "jointmotbf"
object
Description
Summarize a "jointmotbf"
object by describing its main features.
Usage
## S3 method for class 'jointmotbf'
summary(object, ...)
## S3 method for class 'summary.jointmotbf'
print(x, ...)
Arguments
object |
An object of class |
... |
further arguments passed to or from other methods. |
x |
An object of class |
Value
The summary of a "jointmotbf"
object. It contains a list of
elements with the most important information about the object.
See Also
parametersJointMoTBF and jointMoTBF
Examples
## 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 #############################################################
##############################################################################
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
##############################################################################
##############################################################################
[Package MoTBFs version 1.4.1 Index]