BookmarkSubscribeRSS Feed
Paige1
Fluorite | Level 6

I am trying to create a model using gradient boosting. I am getting the error message: "ERROR: Procedure GRADBOOST not found." I have SAS 8.3. Is PROC GRADBOOST not available? Is there something similar available?

Here is my code:

proc gradboost data=Diff_Train_county
			outmodel=Diff_model
			seed=8675309;
	input input1 input2 input3 / level=interval;
	target target1 /level= interval;
run;
5 REPLIES 5
Tom
Super User Tom
Super User

I don't think there was a SAS version 8.3.  And if there was it would by 20 years out of date.

https://blogs.sas.com/content/iml/2013/08/02/how-old-is-your-version-of-sas-release-dates-for-sas-so...

 

Run PROC SETINIT to see what version of SAS you are actually using and what SAS products you have licensed.

 

Paige1
Fluorite | Level 6

Sorry, it's SAS Enterprise Guide

image.png

Tom
Super User Tom
Super User

Enterprise Guide is just a tool for helping you create and run SAS programs. 

Use it to run the SAS program:

PROC SETINIT ;
RUN;

and then you can see what version of SAS you are using.

 

Paige1
Fluorite | Level 6

It says I'm using version 9.04

PaigeMiller
Diamond | Level 26

PROC GRADBOOST is only available if you have licensed SAS Visual Data Mining and Machine Learning. I don't think Enterprise Guide has this software license.

--
Paige Miller

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 5 replies
  • 1353 views
  • 0 likes
  • 3 in conversation