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
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 |
,
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.
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 |
,
Thank you for your response
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;
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.