BookmarkSubscribeRSS Feed
Liat
Calcite | Level 5

Hi,

I want to run a proc reg (3 dependent variables) 1,100,000 obervations.

the syntax I use is:

proc reg data=data_name;

model independent_v = dep_var1 dep_var2 dep_var3 / p r ;

run;

and an error window jump saying sas is going to end because of an unexpected error.

all the 4 variables are continuous.

Can you help?

Thanks,

Liat


2 REPLIES 2
PGStats
Opal | Level 21

Option p and r request a listing of predicted values and residuals. Is that really what you want? You are likely exceeding the capacity of the Output window. Try taking these options off the MODEL statement and use an OUTPUT statement instead to write the values to a dataset.

output out=output_name p=pred r=resid;

PG

PG
Liat
Calcite | Level 5

problem solved within a minute. many thanks!

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 2 replies
  • 981 views
  • 0 likes
  • 2 in conversation