BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
nikolasfilbert
Fluorite | Level 6

I want to ask, why this won't work on my SAS

 

proc hpgenselect data=work.import;
model y_inc= accyear_inc devyear_inc /
distribution=Tweedie Link=Log;
run;

 

The data=work.import is exist and all variables are defined. But the result is

 

1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
72
73 proc hpgenselect data=work.import;
ERROR: Procedure HPGENSELECT not found.
74 model y_inc= accyear_inc devyear_inc /
75 distribution=Tweedie Link=Log;
76 code File='ScoringParameters.txt';
77 run;
 
Thank you in advance.
1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

As the FAQ states "These high-performance procedures are not supported:"

GAMPL HPBIN HPCANDISC HPCORR
HPDMDB HPDS2 HPFMM HPGENSELECT
HPIMPUTE HPLOGISTIC HPLMIXED HPNLMOD
HPPLS HPPRINCOMP HPQUANTSELECT HPREG
HPSAMPLE HPSPLIT HPSUMMARY

View solution in original post

5 REPLIES 5
ballardw
Super User

There are two likely causes. First is not licensed.

Run

proc setinit;
run;

The log will have the results. If you do not see something like:

 

---High Performance Suite

then you do not have a license.

 

If you do see it then perhaps it was not installed. In which case run:

proc product_status;
run;

The log will tell which licensed products we actually installed. If the High Performance Suite appears as installed contact tech support.

 

 

There is also a chance that the version of SAS you are running does not have access. Which version of SAS are you using? The Current version from the Proc Setinit run might be helpful.

nikolasfilbert
Fluorite | Level 6
Thank you for your response. Im using SAS University Edition..
Rick_SAS
SAS Super FREQ

As the FAQ states "These high-performance procedures are not supported:"

GAMPL HPBIN HPCANDISC HPCORR
HPDMDB HPDS2 HPFMM HPGENSELECT
HPIMPUTE HPLOGISTIC HPLMIXED HPNLMOD
HPPLS HPPRINCOMP HPQUANTSELECT HPREG
HPSAMPLE HPSPLIT HPSUMMARY

nikolasfilbert
Fluorite | Level 6

Thank you for your response

brook2
Fluorite | Level 6

Here is the result when i run 

 

There are two likely causes. First is not licensed.

Run

proc setinit;
run;

The log will have the results. If you do not see something like:

 

---High Performance Suite

then you do not have a license.

 

If you do see it then perhaps it was not installed. In which case run:

proc product_status;
run;

 

 

why i still cant run the HPGENSELECT ? 

 

 

here is what i get when i run 

 

proc product_status;

run;

 

_______=====_________________========
 
1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
72
73 proc product_status;
74 run;
 
For Base SAS Software ...
Custom version information: 9.4_M6
Image version information: 9.04.01M6P110718
For SAS/STAT ...
Custom version information: 15.1
For SAS/ETS ...
Custom version information: 15.1
For SAS/IML ...
Custom version information: 15.1
For High Performance Suite ...
Custom version information: 2.2_M7
For SAS/ACCESS Interface to PC Files ...
Custom version information: 9.4_M6
NOTE: PROCEDURE PRODUCT_STATUS used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
 
 
75
76 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
88

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 1607 views
  • 3 likes
  • 4 in conversation