BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Dennis777
Calcite | Level 5

Hi everyone, I am very new in sas and trying to predict value in SAS. I use a dataset from 2010-2019 as a baseline. I am wondering how I could predict the expect value in 2020.

 

here is my code below (use dataset from 2010-2019 to train):

Proc genmod data=all_data.data1;
class season ;
model death=season  old_a/ dist = poisson 
                      link = log
                      offset= ln
		      pscale
type1
type3;
ods output ParameterEstimates=PE;
run;

All I have is observe death. I want to obtain expect death in 2020.

1 ACCEPTED SOLUTION
2 REPLIES 2

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
  • 2243 views
  • 2 likes
  • 3 in conversation