BookmarkSubscribeRSS Feed
viollete
Calcite | Level 5

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.

2 REPLIES 2
Rick_SAS
SAS Super FREQ

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;
PaigeMiller
Diamond | Level 26

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.

--
Paige Miller

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is ANOVA?

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.

Discussion stats
  • 2 replies
  • 1957 views
  • 0 likes
  • 3 in conversation