Hi,
I want to use two-dimensional p-spline method to forecast death rates for next year. How can I do it using Proc Transreg procedure in SAS?
Thank you.
You can put multiple variable names inside the PSPLINE transformation:
proc transreg data=sashelp.cars(where=(Type^="Hybrid")) plots=all;
model identity(mpg_city) = pspline(Horsepower Wheelbase / nknots=1);
run;
I'm wondering if it is really valid to use a spline to do a forecast. A forecast seems like extrapolation to me, and I doubt that a spline does a good job at that.
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.