Learn R Programming

MoTBFs (version 1.4.2)

as.function.motbf: Coerce an "motbf" object to a Function

Description

Takes an "motbf" object and contructs an R function to evaluate it at points.

Usage

# S3 method for motbf
as.function(x, ...)

Value

It returns a function to evaluate an object of class "motbf".

Arguments

x

An object of class "motbf".

...

Further arguments to be passed to or from the method. Not necessary for this method.

Details

This is an S3 method for the generic function as.function.

Examples

Run this code

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

Run the code above in your browser using DataLab