Learn R Programming

IGP (version 0.2.1)

predict.IGP: Predict for class IGP

Description

Predict for class IGP

Usage

# S3 method for IGP
predict(object, XX, se.fit = FALSE, ...)

Value

Prediction from object at XX

Arguments

object

Object of class IGP

XX

Points to predict at

se.fit

Whether the standard error prediction should be returned with the mean prediction

...

Additional parameters

Examples

Run this code
n <- 12
x <- matrix(seq(0,1,length.out = n), ncol=1)
y <- sin(2*pi*x) + rnorm(n,0,1e-1)
gp <- IGP(package='laGP', X=x, Z=y, parallel=FALSE)
predict(gp, .448)

Run the code above in your browser using DataLab