as.function.motbf {MoTBFs} | R Documentation |
"motbf"
Object to a FunctionTakes an "motbf"
object and contructs an R function to evaluate it at points.
## S3 method for class 'motbf'
as.function(x, ...)
x |
An object of class |
... |
Further arguments to be passed to or from the method. Not necessary for this method. |
This is an S3
method for the generic function as.function.
It returns a function to evaluate an object of class "motbf"
.
## Data
X <- rchisq(5000, df = 3)
## Learning
P <- univMoTBF(X, POTENTIAL_TYPE = "MOP"); P
## Evaluation
as.function(P)(min(X))
as.function(P)(max(X))
as.function(P)(10)
density <- as.function(P)(X)
## Plot
hist(X, prob = TRUE, main = "")
points(X, density, col=4, pch=16)