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

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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