print.gp {mlegp} | R Documentation |
prints a summary of a Gaussian process object
## S3 method for class 'gp'
print(x, ...)
x |
an object of class |
... |
for compatibility with generic method |
prints a summary of the Gaussian process object x
, by calling summary.gp
Garrett M. Dancik dancikg@easternct.edu
https://github.com/gdancik/mlegp/
summary.gp for more description of the output
x = -5:5; y1 = sin(x) + rnorm(length(x),sd=.1)
fit1 = mlegp(x, y1)
print(fit1)