Hi All, I have an input interval variable that has a range of negative and positive values. I want to transform the data so that all the negative values for this variable are changed to 0s. I connected my File Import node to the Rules Builder node and added the text below. Then I connected that to a Transform Variables node as I am changing some other variables, (not the ones I need to change the negative values to positives), then it is connected to a Data Partition Node and then a Stat Explore node. When I run everything and look at the results in the Stat Explore node I'm still seeing the negative values for the variables I need to change. Any idea what I'm doing wrong or how I can accomplish this? I appreciate all the help! Rule in Rules Builder is... EM_Outcome = "None"; IF Home_Team_Pitcher_s_FIP < 0.0 THEN DO; EM_Outcome = "0"; END; ELSE IF Visiting_Team_Pitcher_s_FIP < 0.0 THEN DO; EM_Outcome = "0"; END;
... View more