BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
skaminsk
Calcite | Level 5

In my original dataset, the response variable (RESIDUALS) can be less than zero.  However, all the predictions (P_RESIDUALS in data_out) are non-negative.  Where is the setting to allow negative predictions?

 

proc hpsplit data=data_in nodes;
 class DIM1 DIM2;

 model RESIDUALS = DIM1 DIM2;

 grow RSS;
 prune REDUCEDERROR(leaves=8);
 output out=data_out;
 id _Leaf_ DIM1 DIM2;
run;quit;

 

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Try removing the Leaves= on the PRUNE setting or even test without pruning.

 

Just how common are your negative values? If they are uncommon I would suspect that you may  need a fuller tree to get them.

View solution in original post

1 REPLY 1
ballardw
Super User

Try removing the Leaves= on the PRUNE setting or even test without pruning.

 

Just how common are your negative values? If they are uncommon I would suspect that you may  need a fuller tree to get them.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 1 reply
  • 383 views
  • 2 likes
  • 2 in conversation