BookmarkSubscribeRSS Feed
floraminty
Calcite | Level 5

Dear All, 

In my course of statistics we are using SAS Software.

One of the exercises is :compute the fitted sales of good for a supermarket that pays 800 euros in promotion , that has a parking, has 800 000 euros as revenues and the price of the goods is 95 cents;

Using the previous data, i calculated:

Y= 0.555+ 2.042*x1+1.172*x2+1.467*x3-0.856*x4

Y= 0.555+ 2.042*800+1.172*1+1.467*800000-0.856*0.95

Y=1 175 234.5

Next task is:the regression output has been produced using SAS software. Write the programm to computethis output.

 

Could you please help me with this task?

9 REPLIES 9
PaigeMiller
Diamond | Level 26

You can look up the documentation for PROC REG and give it a try yourself. There are examples in the documentation.

http://documentation.sas.com/?cdcId=statcdc&cdcVersion=14.2&docsetId=statug&docsetTarget=statug_reg_...

--
Paige Miller
Reeza
Super User

Here's a list (and code) of the different ways to score a regression model.

floraminty
Calcite | Level 5

Where?

Reeza
Super User

http://blogs.sas.com/content/iml/2014/02/19/scoring-a-regression-model-in-sas.html

 

My bad, CTRL + V doesn't always work on this machine 🙂

Rick_SAS
SAS Super FREQ

Do you actually have data? PROC REG fits a model to data. If you don't have data, then you can just write a DATA step that scores the model.

PaigeMiller
Diamond | Level 26

@Rick_SAS wrote:

Do you actually have data? PROC REG fits a model to data. If you don't have data, then you can just write a DATA step that scores the model.


Sure you can write the code without data, but you can't run it. 😉

--
Paige Miller
Rick_SAS
SAS Super FREQ

I see the smiley face, but to clarify for the OP, I use the term "data" to mean observed values that are used to FIT the model. You can EVALUATE the model at any values of the explanatory variables. The values do not need to be observed. For your example, the DATA step is

 

data Want;
input X1-X4;
Y= 0.555+ 2.042*x1+1.172*x2+1.467*x3-0.856*x4;
datalines;
800 1 800000 0.95
;
proc print; run;
PaigeMiller
Diamond | Level 26

Oh, I see, somehow the thread has morphed into scoring (or evaluating) an existing regression model; but that was not the original question. The original question was how to write SAS code to produce the output (regression coefficients and/or a regression model) that the user has provided. The PROC REG code to create these coefficients and estimate the model can of course be written without the data.

--
Paige Miller
Reeza
Super User

@PaigeMiller You're correct, the question is ambiguous.

 

The OP can clarify I assume what h/she needs. 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 9 replies
  • 2133 views
  • 0 likes
  • 4 in conversation