IGP_laGP: IGP R6 object for fitting laGP model

IGP_laGPR Documentation

IGP R6 object for fitting laGP model

Description

Class providing object with methods for fitting a GP model

Format

R6Class object.

Value

Object of R6Class with methods for fitting GP model.

Methods

Documentation

For full documentation of each method go to https://github.com/CollinErickson/IGP/

new(X=NULL, Z=NULL, package=NULL, estimate.nugget=T, nugget0=F, ...)

This method is used to create object of this class with X and Z as the data. The package tells it which package to fit the GP model.

update(Xall=NULL, Zall=NULL, Xnew=NULL, Znew=NULL, ...)

This method updates the model, adding new data if given, then running optimization again.

Super class

IGP::IGP -> IGP_laGP

Public fields

X

Design matrix

Z

Responses

N

Number of data points

D

Dimension of data

Active bindings

X

Design matrix

Z

Responses

N

Number of data points

D

Dimension of data

Methods

Public methods

Inherited methods

Method .init()

Usage
IGP_laGP$.init(
  ...,
  d = NULL,
  g = NULL,
  theta = NULL,
  nugget = NULL,
  no_update = FALSE
)

Method .update()

Usage
IGP_laGP$.update(..., no_update = FALSE)

Method .predict()

Usage
IGP_laGP$.predict(XX, se.fit, ...)

Method .predict.se()

Usage
IGP_laGP$.predict.se(XX, ...)

Method .predict.var()

Usage
IGP_laGP$.predict.var(XX, ...)

Method .delete()

Usage
IGP_laGP$.delete(...)

Method .theta()

Usage
IGP_laGP$.theta()

Method .nugget()

Usage
IGP_laGP$.nugget()

Method .s2()

Usage
IGP_laGP$.s2()

Method .mean()

Usage
IGP_laGP$.mean()

Method clone()

The objects of this class are cloneable with this method.

Usage
IGP_laGP$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

Examples

n <- 40
d <- 2
n2 <- 20
f1 <- function(x) {sin(2*pi*x[1]) + sin(2*pi*x[2])}
X1 <- matrix(runif(n*d),n,d)
Z1 <- apply(X1,1,f1) + rnorm(n, 0, 1e-3)
X2 <- matrix(runif(n2*d),n2,d)
Z2 <- apply(X2,1,f1)
XX1 <- matrix(runif(10),5,2)
ZZ1 <- apply(XX1, 1, f1)
u <- IGP_laGP$new(X=X1,Z=Z1)
cbind(u$predict(XX1), ZZ1)
u$predict.se(XX1)
u$update(Xnew=X2,Znew=Z2)
u$predict(XX1)
u$delete()

IGP documentation built on Jan. 16, 2023, 1:07 a.m.