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

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1425 views
  • 0 likes
  • 3 in conversation