Subclass-MoTBF | R Documentation |
"motbf"
FunctionsCollection of functions for detecting the subclass of an "motbf"
object. It can be "mop"
or "mte"
.
is.mte(fx)
is.mop(fx)
subclass(fx)
fx |
A function of the class |
is.mte
and is.mop
return a logical value, TRUE
if it is an "motbf"
object of the subclass
"mte"
or "mop"
, respectly; or FALSE
otherwise.
subclass
returns a "character"
string, "mte"
or "mop"
.
univMoTBF
## MOP Function
X <- rnorm(1000)
P <- univMoTBF(X, POTENTIAL_TYPE="MOP")
is.mop(P)
subclass(P)
## MTE Function
X <- rchisq(1000, df=4)
P <- univMoTBF(X, POTENTIAL_TYPE="MTE")
is.mte(P)
subclass(P)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.