Normalize variables

KeithrKeithr MemberPosts:10Contributor II
Hi,

I'm trying to create a predictive model for churn. Some of the variables I'm using are the percentage change in sales from month to month. In order to control the outliers on the positive side (e.g. 200% increase in sales from month-5 to month-4) I set a cap at 3 (300%). On the negative side (i.e. drop in sales) the most a customer can drop is -1 (-100%), but I have many of these cases. My distribution is pretty normal except for these customers, which is giving me a bimodal distribution.

Is there any calculation I can do with this variable to normalize the distribution including the -1 (-100%) instances? Or if there is no way to do this, any other suggestions would be great.

Thanks in advance for your help.

Keith

Answers

  • reports01reports01 MemberPosts:23Maven
    Why don't you cluster them? say:

    Cluster 1: Outliers negative
    Cluster 2: Normal decrese
    Cluster 3: stable
    ...
    ...
    ...
    Cluster n: Extreme growth

  • KeithrKeithr MemberPosts:10Contributor II
    Thanks.

    This will work as long as I make the interval range for the "Outlier negatives" smaller than the other bins. In other words, in order to NOT include too many instances in the "large drop" bin I'd have to have the range from -100% to, let's say, -90%, while the other bins would have a much larger range (e.g.-89% to -40%).

    Statistically speaking, is it OK to have bins with different ranges like that?

    Keith
  • KeithrKeithr MemberPosts:10Contributor II
    When I binned the sales variables to normalize the distribution I had use few bins so that the -100% would not overwhelm the other bins. I then used the CR&T learner against some those variables and my accuracy actually decreased. it seems that CR&T at least does OK with bimodal distributions.
Sign InorRegisterto comment.