GauPro (version 0.2.2)

plot.GauPro: Plot for class GauPro

Description

Plot for class GauPro

Usage

# S3 method for GauPro
plot(x, ...)

Arguments

x

Object of class GauPro

...

Additional parameters

Value

Nothing

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(X=x, Z=y, parallel=FALSE)
if (requireNamespace("MASS", quietly = TRUE)) {
  plot(gp)
}

# }

Run the code above in your browser using DataCamp Workspace