BookmarkSubscribeRSS Feed
BaoHuy
Calcite | Level 5

Dear Experts of SAS Support Community,

 

I have trouble: I am using SAS University Edition and would like to apply Proc Model for SUR to develop equations.

My code is below :

 

proc model data=AllData;
parms a1=0.6122 b1=0.7692 c1=0.3694
a2=0.6122 b2=0.7692;

AGB = a1*(DBH2HWD**b1)*(CA**c1);
h.AGB = 1/DBH2;

BGB = a2*(DBH2H**b2);
h.BGB = 1/DBH2;

TB = a1*(DBH2HWD**b1)*(CA**c1) + a2*(DBH2H**b2);
h.TB = 1/DBH2;

fit AGB BGB TB / sur outest = Alldata_est;

run;

 and then run I have received a notification of error as the following:

ERROR: Procedure MODEL not found.

 

Please help let me know whether there is any wrong in the code; or does SAS University Edition support/provide that procedure?

 

Thank you very much in advance

Bao Huy

 

 

2 REPLIES 2
Ksharp
Super User

PROC MODEL is under SAS/ETS , UE don't has this PROC .

ChrisHemedinger
Community Manager

A few SAS/ETS procedures are in the SAS University Edition: TIMESERIES, UCM and some others.

 

More SAS procedures, including PROC MODEL, are in the SAS-hosted SAS OnDemand for Academics.  As a student/researcher, you can use that environment for free under similar terms & conditions.

Register for SAS Innovate 2025!! The premier event for SAS users, May 6-9 in Orlando FL. Sign up now for the best deals!

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!

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
  • 1503 views
  • 2 likes
  • 3 in conversation