Using the fda package I have created the fd object called "curve":
splinebasis = create.bspline.basis(rangeval = c(0,100),
nbasis = 23,
norder = 4)
curve = smooth.basis(x, y, splinebasis)$fd
At this point I can easily plot my fd object through the command:
plot(curve)
Obtaining a fine result.
What I would like to do, is to plot the object using the ggplot2 package, but unfortunatelly I have no clue how to code the ggplot2 s.t. it uses the basis and coefficient to return the continuous curve*.
- I have actually done it using eval.fd, but I wish to plot the actual B spline function using ggplot, instead of some new generated discrete points.
Here is a simple solution using
predict
from thefda
package.