I'm using the R function interSpline
to smooth out a curve of a line with 9 points (so that it doesn't look like it's just connecting the dots). Here is an example of what I'm doing:
plot(NA, NA, xlim = c(0,1), ylim = c(0,1), xlab = "p", ylab = "q")
lines(predict(interpSpline(data.x, data.fit)))
points(data.x, data.y, pch = 0)
However I can't find what methodology is actually being applied in the interSpline
function.