- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 04-12-2018 09:05 PM
(1112 views)
How can we predict result for a hypothetical given observation for a linear regression model in SAS Enterprise miner
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Usually you would use the SCORE node. Is something about that not working for you?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Could you please let me know the steps how we can add an observation
manually to the Score node pls
manually to the Score node pls
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
You need to create a data set with the observation values. You can do that in multiple ways, but one would be to use a SAS code node in a data step.
data data2score;
input ID $ var1-var5;
cards;
A 0 1 2 3 4
;
run;