Learn R Programming

GauPro (version 0.2.4)

GauPro_Gauss_LOO: Corr Gauss GP using inherited optim

Description

Corr Gauss GP using inherited optim

Corr Gauss GP using inherited optim

Arguments

Value

Object of R6Class with methods for fitting GP model.

Format

R6Class object.

Super classes

GauPro::GauPro -> GauPro::GauPro_Gauss -> GauPro_Gauss_LOO

Methods

Public methods

Method update()

Usage

GauPro_Gauss_LOO$update(
  Xnew = NULL,
  Znew = NULL,
  Xall = NULL,
  Zall = NULL,
  restarts = 5,
  param_update = self$param.est,
  nug.update = self$nug.est,
  no_update = FALSE
)

Method pred_one_matrix()

Usage

GauPro_Gauss_LOO$pred_one_matrix(XX, se.fit = F, covmat = F)

Method clone()

The objects of this class are cloneable with this method.

Usage

GauPro_Gauss_LOO$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

Run this code
# NOT RUN {
n <- 12
x <- matrix(seq(0,1,length.out = n), ncol=1)
y <- sin(2*pi*x) + rnorm(n,0,1e-1)
gp <- GauPro_Gauss_LOO$new(X=x, Z=y, parallel=FALSE)
# }

Run the code above in your browser using DataLab