Hello Everyone,
I'm trying to optimize the following procedure:
1. Select weights and compute the weighted average of 7 factors
2. Rank order the weighted average factors from smallest to largest
3. Bin the weighted average factors into n bins (small to large) with equal weight
4. Examine the relationship of the average values in each bin to another variable (y)
I would like to select the weights in step 1 such that I get:
1. A monotonically increasing relationship between the average values in the bins to the other variable (y)
2. A fairly linear relationship with a line with the steepest slope
My apologies if this type of problem has already been discussed. I did some searches but couldn't find anything directly related.
Can I use a constrained linear regression where the coefficients are non-negative and sum to 1? Or would the solution involve some sort of tree procedure?
Thanks very much for any help or suggestions.
-Bill