How do I solve the problem of related attributes?
For example I have a dataset with the following structure:
Economic Code 1 | Percentage | Economic Code 2 | Percentage | Economic Code 3 | Percentage | Success |
EC12 | 60% | EC13 | 30% | EC14 | 10% | Yes |
EC13 | 60% | EC15 | 20% | EC12 | 20% | No |
EC19 | 50% | EC13 | 50% | EC14 | 0% | Yes |
The first and second attribute are related. The second attributes shows how much percentage of weightage should be given to the first. Similarly for the third and fourth. An attribute should be neglected if the value of weightage is zero.
How do I go about solving this? Any tips or suggestions are welcome.