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.  

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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