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.
Dive into keynotes, announcements and breakthroughs on demand.
Explore Now →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.