1
I have two datasets (brake and gear). Both the brake date set and the Ambios data set have attributes (Force, Aero, Grip and Rely). I would like to get the total of combinations between these datasets, and the sum of their attributes. In the example above I put the two datasets with two pieces each and also an example of how I would like to view the result in the table "Expected result". This table shows me all the combinations between the 4 pieces and the sum of the attributes.
Dataset of brake:
|Level|Freio|Força|Aero|Grip|Rely|
|:----|:----|:----|:---|:---|:---|
| 8 |MINI |8 |13 |28 |5 |
| 10 |Fth |8 |6 |28 |11 |
Data set of Cambio:
|Level|Cambio|Força|Aero|Grip|Rely|
|:----|:-----|:----|:---|:---|:---|
| 10 |Sd |8 |6 |6 |16 |
| 8 |Smoke |15 |5 |5 |5 |
Expected result
Expected dataset
|Combinacao|Freio|Cambio|Força|Aero|Grip|Rely|
|:---------|:----|:-----|:----|:---|:---|:---|
|Mini Sd |Mini |Sd |16 |19 |34 |21 |
|Mini Smoke|Mini |Smoke |23 |18 |33 |10 |
|Fth Smoke |Fth |Smoke |23 |11 |33 |16 |
|Fth Sd |Fth |Sd |16 |12 |34 |27 |
You can describe better what you want to do?
– Lucas
Of course, help me understand if I was clear. I have two datasets (brake and gear). Both brakes and brakes have attributes (Force, Aero, Grip and Rely). I would like to get the total of combinations between these datasets, and the sum of their attributes. In the example above I put the two datasets with two pieces each and also an example of how I would like to view the result in the table "Expected result". This table shows me all the combinations between the 4 pieces and the sum of the attributes.
– Felipe Luiz Cimadon
Great. Please click "edit" on the question and add this description.
– Lucas
Done, please let me know if it got better that way. Thank you
– Felipe Luiz Cimadon