The new splines extension has hopefully been installed as intended, there were no error messages. But it still does not work. I have tried with both the original dataset and the simulated data for which I want to make predictions. For generating the data and the spline part I have used the following syntax:
NEW FILE.
INPUT PROGRAM.
LOOP diameter=20 TO 80 BY 2.
END CASE.
END LOOP.
END FILE.
END INPUT PROGRAM.
EXECUTE.
DATASET NAME spline_test.
STATS SPLINES VARIABLES=diameter DATASET=splines
/TRANSFORMATION TYPE=NATURALSPLINE DF=5 BOUNDS=20 80
/OPTIONS OUTNAMES=VARNAME DISPLAYKNOTS=YES.
Anything in the setup which I have misunderstood?