BookmarkSubscribeRSS Feed
skizee
Calcite | Level 5

Hello,
I'm trying to run part of s code on a 32bit SAS but it's giving me the following error: Decision trees (nominal target) cannot use VARIANCE and FTEST criteria. This code is working on 64 bit SAS. Any ideas how to run it on 32bit SAS?
The code is:

 

proc hpsplit data=test_full_g20 maxdepth=5 maxbranch=5  LEAFSIZE=1200;
class var1 var2 var3 ;
model KFS = var1 var2 var3  var4 var5 var6 ....;
   grow FTEST;
   ID NL;
	output NODESTATS=ropl_NODESTATS123  importance=import PRUNESUBTREE=ropl_PRUNESUBTREE ;
   *prune costcomplexity;/*too many leafs*/
   *code file = ".....";/*keeps SAS codes that can be used later for tree generation*/
   code file = ".....";/*keeps SAS codes that can be used later for tree generation*/
   rules file = ".....";
score out=test123;
run;

 

 

3 REPLIES 3
SASKiwi
PROC Star

What versions are your 32bit and 64bit SAS? If they are at different maintenance levels that may explain your problem.

skizee
Calcite | Level 5

Hi,
Thanks for your reply but the version of SAS 32 bit and 64 bit is the same - 9.4 😞

SASKiwi
PROC Star

@skizee - I suggest you track your problem to SAS Tech Support as they are in the best position to help.  

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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
  • 3 replies
  • 529 views
  • 1 like
  • 2 in conversation