☑ This topic is solved.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 07-05-2022 11:57 PM
(1978 views)
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
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content