## Example: Average temperatures at different latitudes
x <- seq(-55, 65, by = 10)
y <- c(-3.25, -3.37, -3.35, -3.20, -3.12, -3.02, -3.02,
-3.07, -3.17, -3.32, -3.30, -3.22, -3.10)
xs <- seq(-60, 70, by = 1)
# Generate a function for this
pp <- cubicspline(x, y)
ppfun <- function(xs) ppval(pp, xs)
## Not run:
# # Plot with and without endpoint correction
# plot(x, y, col = "darkblue",
# xlim = c(-60, 70), ylim = c(-3.5, -2.8),
# xlab = "Latitude", ylab = "Temp. Difference",
# main = "Earth Temperatures per Latitude")
# lines(spline(x, y), col = "darkgray")
# grid()
#
# ys <- cubicspline(x, y, xs, endp2nd = TRUE) # der = 0 at endpoints
# lines(xs, ys, col = "red")
# ys <- cubicspline(x, y, xs) # no endpoint condition
# lines(xs, ys, col = "darkred")
# ## End(Not run)
Run the code above in your browser using DataLab