BookmarkSubscribeRSS Feed
alex_PARIS
Calcite | Level 5
Hi everybody,

Newby on the forum and with sas, I would like to do a regression for exemple :
model car_solded = earn population

After I would like plot the results and residues on the same graph but depending on time. But I have the problem below:
ERROR: A variable was specified in the PLOT statement which is not specified in a VAR or
MODEL statement

The complete example is below:
proc reg data=data.data_used;
title 'regression lineaire';
model car_solded = earn population /r p;
plot r.*Time;
run;


Could someone helping me.
Thanks a lot
1 REPLY 1
Robert_Bardos
Fluorite | Level 6
The documentation for PROC REG says

VAR
lists variables for which crossproducts are to be computed, variables that can be interactively added to the model, or variables to be used in scatter plots.


So you probably need a VAR statement here (as the ERROR message suggests BTW.)

As an aside: why can't these error messages say which variable? Should be pretty much known ...

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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
  • 1 reply
  • 951 views
  • 0 likes
  • 2 in conversation