print {SpatialExtremes} | R Documentation |
A method for printing object of class ``pspline''.
## S3 method for class 'pspline': print(x, ...)
x |
An object of class ``pspline''. Most often, x is the
output of the rbpspline function. |
... |
Other options to be passed to the print
function. |
Print several information on screen.
Mathieu Ribatet
n <- 200 x <- runif(n) fun <- function(x) sin(3 * pi * x) y <- fun(x) + rnorm(n, 0, sqrt(0.4)) knots <- quantile(x, prob = 1:31 / 32) fitted <- rbpspline(y, x, knots = knots, degree = 3) fitted