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

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

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
  • 678 views
  • 0 likes
  • 3 in conversation